gpt4 book ai didi

javascript - 初始化 ng-model 时,Angular ui-select 占位符不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:02:27 25 4
gpt4 key购买 nike

我试图在每次点击按钮时添加一个新的选择,

html:

 <div ng-repeat = "select in selects track by $index">
<ui-select ng-model="selects[$index]" theme="select2" ng-disabled="disabled" style="min-width: 300px;">
<ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="person in people">
<div ng-bind-html="person.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
</div>
<button ng-click="addNewSelect()"> Add new select</button>

Controller :

  $scope.selects = [{}];
$scope.addNewSelect = function() {
$scope.selects.push({});
}

对象数组保存在数组“selects”中,但占位符未出现在选择中,因为我最初使用空对象初始化 ng-model。在这种情况下如何让占位符起作用?

这是 Plunker同样。

最佳答案

您在 selects[$index] 之后缺少 .selected

如果没有这个,ui-select 认为您选择了一个空对象(selects[$index])并且不会显示占位符。

<ui-select ng-model="selects[$index].selected" theme="select2" ng-disabled="disabled" style="min-width: 300px;">

http://plnkr.co/edit/56SHyE01BJ4EXglLlIcb?p=preview

你也不需要使用索引查找,你可以只使用select.selected

<ui-select ng-model="select.selected" theme="select2" ng-disabled="disabled" style="min-width: 300px;">

http://plnkr.co/edit/3Uq8lDtDOaj5mIZVrCfv?p=preview

关于javascript - 初始化 ng-model 时,Angular ui-select 占位符不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29428264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com