我正在使用CountryDropdownField
。我已经设置了空字符串。它保持默认为United States
。我怎么做它默认为空字符串中的设置?
$fields = new FieldList(
CountryDropdownField::create('Country')
->setEmptyString('-- Please choose a country --')
);
答案 0 :(得分:3)
将以下内容添加到mysite_config \ config.yml(然后确保运行dev / build?full = 1)以实现此目的...
CountryDropdownField:
default_to_locale: false
default_country: ''