我有一个带翻译的JSON文件。我特别有一个名为Select_Time_Format
的属性。我想在HTML字段的占位符属性中使用此转换(见下文)
<label for="time-format" i18ng="'Time_Format'"></label>
<div class="select2-container select x100" id="s2id4">
<select ngyn-select2
ng-model="$ctrl.tournament.time_format"
ng-options="key as label for (key, label) in $ctrl.timeFormats"
id="time-format"
name="time_format"
class="select x100"
placeholder="Select Time Format">
</select>
是否有某种方法可以将placeholder="Select Time Format
替换为i18ng="'Select_Time_Format'"
?
答案 0 :(得分:0)
原来正确的语法如下。
placeholder="{{ 'Whatever_Your_Translation_Name_Is' | t }}"