0

我可以对这样的 json 属性文件使用data-18n没问题:

<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}”...

4

1 回答 1

0

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

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

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

于 2013-10-11T19:09:24.490 回答