我想使用像 i18n 引擎这样的过滤器,这个过滤器工作正常。但是,如果我尝试在模板 HTML 中使用 i18n 过滤器(使用 $routeProvider),我将无法完成这项工作。
我的过滤器:
app.filter('i18n', function() {
return function (input) {
return $.i18n._(input);
}
});
我的 HTML 模板:
<div class="fieldConfig first">
<label id="label_topology" for="topology" class="labelMedio">{{"Topologia" | i18n}}:</label>
</div>
我的控制器:
function WanCtrl($scope, $routParams, $i18n) {
$scope.title = 'Wan';
};
我是否需要在控制器中添加更多内容才能在模板中使用过滤器?
谢谢!