我正在尝试根据使用指令的某个属性的值将该multiple
属性添加到指令中。不幸的是,这对我不起作用。我已经设置了一个 plunker 示例来展示正在发生的事情。ui-select
ng-attr-
问问题
3848 次
2 回答
6
编辑
在阅读了 Angular Repo中提到的GitHub 问题后,我终于明白了。
您需要设置一个更高的指令priority
和一个terminal
设置为 true 的属性(在我们的指令编译之后跳过所有其他指令的编译)。然后在postLink
函数中我们将编译整个元素本身。但在此之前,我们自己的指令需要被移除(无限循环!)。
指令代码
angular.module('app')
.directive('multiSelectChecker', function ($compile) {
return {
restrict: 'A',
replace: false,
terminal: true, //terminal means: compile this directive only
priority: 50000, //priority means: the higher the priority, the "firster" the directive will be compiled
compile: function compile(element, attrs) {
element.removeAttr("multi-select-checker"); //remove the attribute to avoid indefinite loop
element.removeAttr("data-multi-select-checker"); //also remove the same attribute with data- prefix in case users specify data-multi-select-checker in the html
return {
pre: function preLink(scope, iElement, iAttrs, controller) { },
post: function postLink(scope, iElement, iAttrs, controller) {
if(scope.options.Multiple == true) {
iElement[0].setAttribute('multiple',''); //set the multiple directive, doing it the JS way, not jqLite way.
}
$compile(iElement)(scope);
}
};
}
};
});
HTML 代码
<ui-select ng-model="model.choice" multi-select-checker>
<ui-select-match>{{$item.Title}}</ui-select-match>
<ui-select-choices repeat="item.Id as item in options.SuggestedValues | filter: { Title: $select.search }">
<div ng-bind="item.Title | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
工作计划:
http://plnkr.co/edit/N11hjOFaEkFUoIyeWqzc?p=preview
原始答案(也有效,但代码重复)
我做了以下事情:
- 创建了一个名为的包装指令
multi-select-checker
- 在该指令中检查
options.Multiple
是真还是假 - 为每种情况返回两个不同的模板 URL。案例 1):返回 single-select.tpl.html 或案例 2):返回 mutli-select.tpl.html(其中包括 'multiple' 指令。
指令代码:
app.directive('multiSelectChecker', function() {
return {
template: '<ng-include src="getTemplateUrl()"/>',
controller: function($scope) {
$scope.getTemplateUrl = function() {
if($scope.options.Multiple == true) {
console.log("multi-select");
return "multi-select.tpl.html"
}
else {
console.log("single select");
return "single-select.tpl.html"
}
}
}
}
})
HTML 中的用法:
<body ng-controller="DemoCtrl">
<multi-select-checker>
</multi-select-checker>
</body>
模板一:单选
<ui-select ng-model="model.choice">
<ui-select-match>{{$item.Title}}</ui-select-match>
<ui-select-choices repeat="item.Id as item in options.SuggestedValues | filter: { Title: $select.search }">
<div ng-bind="item.Title | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
模板 2:多选
<ui-select ng-model="model.choice" multiple>
<ui-select-match>{{$item.Title}}</ui-select-match>
<ui-select-choices repeat="item.Id as item in options.SuggestedValues | filter: { Title: $select.search }">
<div ng-bind="item.Title | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
正如你所看到的,这两个模板只有一个指令不同:'multiple'。也许有更好的解决方案。
我什至无法理解,为什么 ng-attr-multiple 方法不起作用。
此外,我已经意识到,有两个单独的输入字段通过 ng-attr-multiple 方法呈现。
并且单选案例似乎被打破了(通过删除多个指令) - 这也在您的初始 Plnkr 中。
工作代码
请参阅此处的工作 Plnkr:http://plnkr.co/edit/T9e5tcAkcQLsDV3plfEl?p= preview
于 2015-08-07T08:29:12.260 回答
3
这是你想要达到的目标:
<body ng-controller="DemoCtrl">
This works perfectly well:
<ui-select ng-model="model.choice" multiple>
<ui-select-match>{{$item.Title}}</ui-select-match>
<ui-select-choices repeat="item.Id as item in options.SuggestedValues | filter: { Title: $select.search }">
<div ng-bind="item.Title | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
<br />
<br />
This does not work:
<ui-select ng-model="model.choice2" multiple="{{options.Multiple}}">
<ui-select-match>{{$item.Title}}</ui-select-match>
<ui-select-choices repeat="item.Id as item in options.SuggestedValues | filter: { Title: $select.search }">
<div ng-bind="item.Title | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
</body>
于 2015-08-07T07:58:12.317 回答