Angularjs选择不支持翻译

时间:2016-10-03 09:08:28

标签: angularjs html5

<select chosen
        options="myOptions"
        ng-model="StatCode"
        data-placeholder="{{'PleaseSelect' | translate}}"
        ng-options="item[0] as item[1] + ' / ' + item[0] for item in myOptions"
        required></select>

我改变了语言。但是不要改变占位符。

1 个答案:

答案 0 :(得分:0)

您需要placeholder-text-single使用single selectplaceholder-text-multiple使用multiple select

此外,您的表达应附在''

placeholder-text-single="'{{'PleaseSelect' | translate}}'"

请注意{{之前和}} 之后的单引号

以下是将select placeholderoption text从英语翻译为俄语的基本示例。

通常在从一种语言转换为另一种语言时,只有option text发生变化,而option value保持不变,无论语言如何

EXAMPLE

单击超链接以查看语言更改。