0

我正在使用 angular 1.4.x 和Bluradmin模板。问题与bootstrapswitch 自定义指令有关

(function () {
  'use strict';

  angular.module('BlurAdmin.pages.form')
      .directive('switch', switchDirective);

  /** @ngInject */
  function switchDirective($timeout) {
    return {
      restrict: 'EA',
      replace: true,
      scope: {
    ngModel: '='
      },
      template: function(el, attrs) {
    return '<div class="switch-container ' + (attrs.color || '') + '"><input type="checkbox" ng-model="ngModel"></div>';
      },
      link: function (scope, elem, attr) {
    $timeout(function(){
      var input = $(elem).find('input');
      input.bootstrapSwitch({
        size: 'small',
        onColor: attr.color
      });
      input.on('switchChange.bootstrapSwitch', function(event, state) {
        scope.ngModel = state;
        scope.$apply();
      });

    }, 2000);
      }
    };
  }
})();

它只在渲染 DOM 期间正确加载一次,然后在 ngModel 更改后,它不会刷新。我怎样才能实现它?顺便说一句,我可以手动切换它,但这不是重点。

4

1 回答 1

0

解决方案很简单:不要使用该指令。而是使用: https ://github.com/JumpLink/angular-toggle-switch (特别是检查它的is-disabled属性,当 ngModel 更改时它将起作用。替代解决方案没有此功能:https://github。 com/frapontillo/angular-bootstrap-switch/issues/96

于 2016-10-23T23:48:52.907 回答