【发布时间】:2015-07-20 07:03:16
【问题描述】:
I18n 键:
"step1.download":"{{n0}} Download {{n1}} Some text."
在我的 html 中:
<span translate=step1.download translate-values="{ n0: '{{info0}}', n1: '{{info1}}'}"></span>
在我的控制器中:
$scope.download = function(){
alert("fun executed");
};
$scope.info0="<button ng-click=download()>";
$scope.info1="</button>";
我得到一个没有定义下载功能的错误,我认为是因为在角度编译之前解析了html,所以有什么办法可以解决这个问题。替代解决方案也值得赞赏。
【问题讨论】:
标签: angularjs internationalization angular-translate