Aurelia - I18N 选项 select
Aurelia - I18N on options of a select
我想翻译我 select 的选项,但我不知道该怎么做 :
<select>
<option repeat.for="element of elementList" model.bind="element.id">
${element.value} <== How to translate the value ?
</option>
</select>
你能帮帮我吗?
该值必须是翻译文件中的键。然后您只需使用 t
绑定行为:
${element.value & t}
这也适用于 model.bind
表达式,但这可能不是您想要的。
我想翻译我 select 的选项,但我不知道该怎么做 :
<select>
<option repeat.for="element of elementList" model.bind="element.id">
${element.value} <== How to translate the value ?
</option>
</select>
你能帮帮我吗?
该值必须是翻译文件中的键。然后您只需使用 t
绑定行为:
${element.value & t}
这也适用于 model.bind
表达式,但这可能不是您想要的。