我可以对这样的 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}”...