我无法让ng-transclude在ng-switch-default指令中工作。这是我的代码:
指令:
.directive('field', ['$compile', function($complile) {
return {
restrict: 'E',
scope: {
ngModel: '=',
type: '@',
},
transclude: true,
templateUrl: 'partials/formField.html',
replace: true
};
}])
的泛音/ formField.html 的
<div ng-switch on="type">
<input ng-switch-when="text" ng-model="$parent.ngModel" type="text">
<div ng-switch-default>
<div ng-transclude></div>
</div>
</div>
我称之为......
<field type="other" label="My field">
test...
</field>
产生错误:
[ngTransclude:orphan] Illegal use of ngTransclude directive in the template! No parent directive that requires a transclusion found.
在ng-switch指令之外,它没有任何障碍,但我对如何使其工作感到茫然。有什么建议吗?
编辑: 这是一个现场演示:http://plnkr.co/edit/3CEj5OY8uXMag75Xnliq?p=preview
答案 0 :(得分:6)
问题是ng-switch
正在进行自己的转换。因此,通过ng-switch
的转换,您的翻译工作就会丢失。
我认为你不能在这里使用ng-switch
。
<input ng-if="type == 'text'" ng-model="$parent.ngModel" type="{{type}}" class="form-control" id="{{id}}" placeholder="{{placeholder}}" ng-required="required">
<div ng-if="type != 'text'">
<div ng-transclude></div>
</div>
答案 1 :(得分:0)
取自:Github issue
问题是ng-switch也在使用转换,这会导致错误。
在这种情况下,您应该创建一个使用正确的$ transclude函数的新指令。为此,将$ transclude存储在父指令的控制器中(在case字段中),并创建一个引用该控制器并使用其$ transclude函数的新指令。
在你的例子中:
.directive('field', function() {
return {
....
controller: ['$transclude', function($transclude) {
this.$transclude = $transclude;
}],
transclude: true,
....
};
})
.directive('fieldTransclude', function() {
return {
require: '^field',
link: function($scope, $element, $attrs, fieldCtrl) {
fieldCtrl.$transclude(function(clone) {
$element.empty();
$element.append(clone);
});
}
}
})
在html中,您只需使用<div field-transclude>
代替<div ng-transclude>
。
这是一个更新的plunker:http://plnkr.co/edit/au6pxVpGZz3vWTUcTCFT?p=preview