我无法让 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