这是一个示例,该示例演示了标题中描述的问题:https://plnkr.co/edit/xn1qgyftc5yhmsrgj0sh?p = preview
指示代码:
.directive('translate', function($compile) {
return {
compile: function(element) {
var html = element.html().split('<br plural="">');
return function(scope, element, attrs) {
function c(h) {
element.html(h);
$compile(element.contents())(scope);
}
if (attrs.translate != '') {
scope.$watch(function() {
return scope.$eval(attrs.translate)
}, function(val, oldval) {
if (val == oldval && html[2] !== undefined) return;
var p = html[2];
html[2] = gettext(html[0], html[1], attrs.add !== undefined ? val + attrs.add : attrs.subtract !== undefined ? val - attrs.subtract : val);
if (p != html[2]) c(html[2]);
});
} else c(gettext(html[0]));
}
}
}
})
因此,问题是当我切换指令以使用ng-if
显示 - 它可能不会完全重置重新编译(?),因此会导致行为不端。
如何从DOM插入并删除指令时如何跟踪?如果有办法,那么我可以用指示器解决此问题。但是必须有更好的方法,对
这样解决了:
.directive('translate', function($compile) {
return {
compile: function(element, attrs) {
if (attrs.translate == '') {
element.html(gettext(element.html()));
return;
}
attrs.html = element.html().split('<br plural="">');
return {
post: function (scope, element, attrs) {
delete attrs.html[2];
scope.$watch(function () {
return scope.$eval(attrs.translate);
}, function (val) {
var p = attrs.html[2];
attrs.html[2] = gettext(attrs.html[0], attrs.html[1], attrs.add !== undefined ? val + attrs.add : attrs.subtract !== undefined ? val - attrs.subtract : val);
if (p == attrs.html[2]) return;
element.html(attrs.html[2]);
$compile(element.contents())(scope);
});
}
}
}
}
})
实例示例
我认为我已经对其进行了很好的优化,但是可以随意纠正代码。