문제

I need to display a country list with dropdown in the custom knockout HTML template. Help would be appreciated.

도움이 되었습니까?

해결책

With reference to this answer.

Magento already provide some inbuilt solution for this.

<?php $countryBlock = $block->getLayout()->createBlock('Magento\Directory\Block\Data');?>

<?= $countryBlock->getCountryHtmlSelect($defValue = null, $name = 'country_id', $id = 'country', $title = 'Country');?>

You can set default $defValue,$name,$id as per as your wise.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top