gpt4 book ai didi

指令中使用的 Angularjs ui-select

转载 作者:行者123 更新时间:2023-12-04 23:19:36 25 4
gpt4 key购买 nike

我在名为 timezone 的 cusom 指令中使用 angular-ui ui-select 指令。问题是当从列表中选择时区时,周围 Controller 的模型对象不会更新。
这是我的指令的代码:

var myApp = angular.module('MyApp', ['ui.select','ngSanitize']);

myApp.directive('timezone', function () {
return {
restrict: 'AE',
template: '<ui-select theme="bootstrap" ng-model="tzModel" style="min-width: 300px;"> <ui-select-match placeholder="Select a timezone in the list">{{$select.selected}}</ui-select-match> <ui-select-choices repeat="tz in timezones | filter: $select.search"> <div ng-bind-html="tz"></div> </ui-select-choices> </ui-select>',

scope: {
tzModel : '=',
},
link: function(scope) {
scope.timezones = ["Africa/Abidjan", "UTC"];
}
};
});

我的 Controller :
myApp.controller('MyCtrl', function ($scope) {
$scope.foo = {name:"Africa/Abidjan"};
});

这是我在 html 中使用它的方法:
<div ng-app="MyApp" ng-controller="MyCtrl">
{{foo}}<br />
<timezone tz-model="foo.name" />
</div>

问题是当我从下拉列表中选择一个新值时,我的 Controller 对象没有更新。
Here is the jsFiddle
我猜 ui-select 有问题,因为我对其他组件做了同样的工作。

最佳答案

您需要在 ui-select 指令中设置 ng-model="tzModel.name"。

https://github.com/angular-ui/ui-select/wiki/FAQs#ng-model-not-working-with-a-simple-variable-on-scope

<timezone tz-model="foo" />

<ui-select theme="bootstrap" ng-model="tzModel.name" ...

https://jsfiddle.net/XyUGE/264/

关于指令中使用的 Angularjs ui-select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31313295/

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