这是我的控制器文件,其中
$scope.htmlCompanyFromScope = '<span style=color:red>Micro</span>';
$scope.htmlTagFromScope = "MicroTag";
我的 *.resx 文件包含
TranslationValue = "{{htmlCompany}} tag is {{htmlTag}}"
在我的定义中,HTML
我定义了以下内容:
<span translate="TranslationValue " translate-values="{htmlCompany: htmlCompanyFromScope , htmlTag: htmlTagFromScope}"></span>
但最终,风格并没有兑现。显示类似
微标签是MicroTag
任何指针?