gpt4 book ai didi

angularjs - 使用 Angular js 处理 Select2 事件

转载 作者:行者123 更新时间:2023-12-04 07:23:33 26 4
gpt4 key购买 nike

我在使用 Angular js 触发我的 select2 on-change 事件时遇到问题。

这是我的 html:

<select ui-select2="{allowClear:true}" data-placeholder="Select a Department" ng-change="DoSomething()" class="input-max" ng-model="l.DepartmentID">
<option value=""></option>
<option ng-repeat="d in l.LineLookups.Departments" value="{{d.DepartmentID}}">{{d.Type}}</option> </select>

当“选择下拉目”更改时,更改事件不会触发。这是我的 Controller 中的事件处理程序:
$scope.DoSomething = function () {
alert('here');
...
}

处理这个问题的最佳方法是什么?有人告诉我要注意模型值。这会起作用,还是有更好的方法?

最佳答案

观看 ng-model 的替代方法:

鉴于:

<select ui-select2="{allowClear:true}" data-placeholder="Select a Department" class="input-max" ng-model="l.DepartmentID">
<option value=""></option>
<option ng-repeat="d in l.LineLookups.Departments" value="{{d.DepartmentID}}">{{d.Type}}</option>
</select>

在 Controller 中:
$scope.$watch('l.DepartmentID', function (newVal, oldVal) {
if (oldVal == newVal) return;
alert('here');
}, true);

关于angularjs - 使用 Angular js 处理 Select2 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18968376/

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