gpt4 book ai didi

angularjs - ng-model 在 ui-select 中没有改变

转载 作者:行者123 更新时间:2023-12-03 14:35:12 26 4
gpt4 key购买 nike

我正在尝试实现一些非常简单的事情:

<ui-select multiple ng-model="company.stack" theme="bootstrap">
<ui-select-match>{$$item.name$}</ui-select-match>
<ui-select-choices repeat="technology in technologies | filter: $select.search">
<div ng-bind-html="technology.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>

更改对象时,更改不会反射(reflect)在模型 company.stack 中。我尝试将其更改为 $parent.company.stack,但它仍然不起作用。我错过了什么?
我正在使用 AngularJS v1.3.0-beta.17。

最佳答案

我遇到了与 angular 1.3.14 类似的问题和 ui-select和多项选择ui-select指令绑定(bind)到数组。我无法将所选项目绑定(bind)到 ng-model 中引用的数组.
我通过包装 selectedItems 让它工作变成一个对象:

$scope.myObj = { selectedItems : []};
...

<ui-select ng-model="myObj.selectedItems" ...>
</ui-select>

selectedItems直接上 $scope对我不起作用。

关于angularjs - ng-model 在 ui-select 中没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25937098/

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