jquery中的预选值multiselect使用angularjs使用ng选项

preselected values in jquery multiselect with angularjs using ng-options

本文关键字:使用 angularjs ng 选项 multiselect jquery      更新时间:2023-11-19
Jquery multiselect与ng选项完美结合。请参阅下面的HTML、指令和控制器。
 <select multiselect multiple ng-model="sched.select"  style="width:130px;" 
 ng-options="option.name for option in availableOptions track by option.value" >

.directive('multiselect', function ($timeout) {
return {
    restrict: 'A',
    scope: {
        model: '='
    },
    transclude: true,
    require: 'ngModel',
    link: function (scope, element, attrs, controller, transclude) {
        $timeout(function() {
            transclude(function (clone) {
                element.append(clone);
                $(element).multiselect();
            });
        });
    }
}
});
 .controller('CreateSubject', function ($scope, factory, $cookieStore,     
 $location, $rootScope){
 $scope.availableOptions = [
 {value: "M", name: 'Monday'},
 {value: "T", name: 'Tuesday'},
 {value: "W", name: 'Wednesday'},
 {value: "Th", name: 'Thursday'},
 {value: "F", name: 'Friday'},
 {value: "S", name: 'Saturday'}    
];
});

现在我的问题是如何在这种情况下预选值?我已经尝试过这个解决方案JQuery multiselect-在multiselect下拉列表中设置一个选定的值,但它给了我一个错误。

angular.js:13236 TypeError: o[e] is not a function
at HTMLSelectElement.<anonymous> (bootstrap-multiselect.min.js:1)
at Function.x.extend.each (jquery.min.js:4)
at x.fn.x.each (jquery.min.js:4)
at t.fn.multiselect (bootstrap-multiselect.min.js:1)
at getschedule (controller.js:152)
at Scope.$scope.getsubjectschedule (controller.js:181)
at fn (eval at <anonymous> (angular.js:14086), <anonymous>:4:347)
at expensiveCheckFn (angular.js:15076)
at callback (angular.js:24546)
at Scope.$eval (angular.js:16820)

您可以尝试在控制器中初始化,并在select标记中使用option.name as option.name,而无需使用track by

在您的控制器中:

.controller('CreateSubject', function ($scope){
 $scope.availableOptions = [
     {value: "M", name: 'Monday'},
     {value: "T", name: 'Tuesday'},
     {value: "W", name: 'Wednesday'},
     {value: "Th", name: 'Thursday'},
     {value: "F", name: 'Friday'},
     {value: "S", name: 'Saturday'}    
  ];
  $scope.sched = {};
  $scope.sched.select =[$scope.availableOptions[0].name,$scope.availableOptions[1].name]
;});

和HTML:

<select multiselect multiple ng-model="sched.select"  style="width:130px;" 
         ng-options="option.name as option.name for option in availableOptions" >
    </select>

注:。如果要将值设置为M, T作为选定值,则应使用option.value as option.name

和文件加载顺序需要遵循jquery,bootstrap(css,js),angular,bootstrapmultiselect(js,css),您的脚本文件

它可能对你有帮助。

柱塞演示