我可以使用data-18n这样的json属性文件没问题:
<div data-i18n="errIncorrectSpecies"></div>
json属性文件有此条目:
"errIncorrectSpecies":"You have selected incorrect species tests."
我如何将动态参数放入“errIncorrectSpecies”值?我想在我的json文件中执行此操作:
"errIncorrectSpecies":"You have selected {0} tests for this {1}."
不确定如何传递“{0}”和“{1}”......
答案 0 :(得分:0)
看起来我可以在我的html文件中这样做......
<div>{{i18n('errIncorrectSpecies', {'0':'test','1':'test2'})}}</div>
我将看看我是否可以在我的angular指令中而不是在HTML中以编程方式执行此操作。