将data-i8n与动态parms一起使用

时间:2013-10-11 17:31:41

标签: jquery json i18next

我可以使用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}”......

1 个答案:

答案 0 :(得分:0)

看起来我可以在我的html文件中这样做......

<div>{{i18n('errIncorrectSpecies', {'0':'test','1':'test2'})}}</div>

我将看看我是否可以在我的angular指令中而不是在HTML中以编程方式执行此操作。