我正在尝试创建一组AngularJS指令,这些指令将有条件地呈现块或内联页面内容的互斥段。例如,我设想了一种只渲染第n个子元素的机制:
<selector member="index">
<div>This div is visible when $scope.index equals 0</div>
<div>This div is visible when $scope.index equals 1</div>
<div>This div is visible when $scope.index equals 2</div>
</selector>
但是,我的设计要求使用自定义元素标记(不是应用于HTML元素的属性)实现指令,并且在渲染完成时从DOM中删除这些HTML无效元素。因此,在上面的示例中,将保留单个匹配的div
元素。
作为对此概念进行原型设计的第一次尝试,我将内置的ngIf
指令转换为使用以下基于元素的语法:
<if condition="true">
<p>This is visible</p>
</if>
<if condition="false">
<p>This is not visible</p>
</if>
要让其发挥作用,只需将restrict
修改为E
,并将已监视属性的名称更改为condition
。这是我内置实现的修改版本:
application.directive("if", ['$animate', function ($animate) {
return {
transclude: 'element',
priority: 1000,
terminal: true,
restrict: 'E',
compile: function (element, attr, transclude) {
return function ($scope, $element, $attr) {
var childElement;
var childScope;
$scope.$watch($attr.condition, function (value) {
if (childElement) {
$animate.leave(childElement);
childElement = undefined;
}
if (childScope) {
childScope.$destroy();
childScope = undefined;
}
if (toBoolean(value)) {
childScope = $scope.$new();
transclude(childScope, function (clone) {
childElement = clone;
$animate.enter(clone, $element.parent(), $element);
});
}
});
};
}
};
}]);
但是,我在取消包含if
元素方面没有取得多大成功。我怀疑我需要更好地理解翻译是如何工作的,但似乎并没有太多的文档。
所以,如果您可以建议使用正确的技术,或者指向一些相关教程的方向,我会非常感激。
谢谢, 添
答案 0 :(得分:3)
不是替换你想要的吗?
transclude: 'element',
priority: 1000,
terminal: true,
restrict: 'E',
replace: true, // ** //
这会将if
替换为content