5

私はこの問題を抱えており、それを修正する方法についてアドバイスを得たいと思っています.

HTMLページの一部を部分ビューに移動し、ng-viewを介してロードしましたが、問題はドロップダウン選択が機能しなくなったことです。スタイルを元に戻すことはできましたが、それをクリックすると、開きません。部分ビューでないときは、現在必要と思われる JavaScript 呼び出しを行う必要さえありませんでした。

これが私のコードです

index.html
 <link href="resources/css/bootstrap.min.css" rel="stylesheet">
    <link href="resources/css/bootstrap-select.css" rel="stylesheet">
    <!-- Bootstrap Core CSS -->

    <script src="resources/js/jquery-2.1.1.min.js"></script>
    <script src="resources/js/jquery-1.11.0.js"></script>

    <script src="resources/js/bootstrap-select.js"></script>

    <script src="resources/library/angular.js"></script>
    <script src="resources/library/angular-route.js"></script>
    <script src="resources/js/MainController.js"></script>
    <script src="resources/js/main-app.js"></script>

    partialview.html
    -------------------
     <select class="selectpicker" multiple ng-model="selE">
                    <option ng-repeat="e in ee">{{e}}</option>
                </select>

    <script>
    $(document).ready(function () {

        $('select').selectpicker({
            style: 'btn-default',
            size: false
        });

    });

</script>   

前もって感謝します。

4

2 に答える 2

8

Angular と jQuery を混在させることはお勧めできません。jQuery プラグインを使用する場合は、カスタム angular ディレクティブ (公式ドキュメント)にラップできます。

この で selectpicker ディレクティブの実際の例を参照してください jsFiddle

html :

<select class="selectpicker"
        multiple
        title='Choose one of the following...'>
  <option>Mustard</option>
  <option>Ketchup</option>
  <option>Relish</option>
</select>

js:

angular.module('demo')
  .directive('selectpicker', function () {
    return {
      restrict: 'C',
      link: function (scope, element) {
        $(element).selectpicker({
          style: 'btn-default',
          size: false
        });
      }
    };
  });

コントローラーへのリンク

require: 'ngModel'ディレクティブで使用すると、ngModelController関数をリンクするための 4 番目のパラメーターとして指定されます (こちらのドキュメントを参照してください)。

したがって、コントローラの値をディレクティブ スコープに簡単にバインドできます。

こちらをご覧other jsFiddleください。

ディレクティブ:

angular.module('demo')
  .directive('selectpicker', function () {
    return {
      restrict: 'C',
      require: 'ngModel',
      link: function (scope, element, attrs, ngModel) {
        var $el = $(element);
        $el.selectpicker({
          style: 'btn-default',
          size: false
        });
        $el.on('change', function (ee, aa) {
          ngModel.$setViewValue($el.val());
          scope.$apply();
        });
      }
    };
  });

コントローラー:

angular.module('demo')
  .controller('MainCtrl', function ($scope) {
    $scope.selected = [];
  });

HTML :

選択しました: {{ 選択済み | json}}

<select ng-model="selected"
        class="selectpicker"
        multiple
        title='Choose one of the following...'>
  <option>Mustard</option>
  <option>Ketchup</option>
  <option>Relish</option>
</select>

パラメータでオプションを渡す

を参照してください3rd jsFiddle

オプションを動的に渡すには、ディレクティブを更新するだけです:

angular.module('demo')
  .directive('selectpicker', function ($timeout) {
    return {
      restrict: 'C',
      require: 'ngModel',
      replace: true,
        template: '<select multiple><option ng-repeat="opt in options">{{ opt }}</option></select>',
      scope: {
        options: '='
      },
      link: function (scope, element, attrs, ngModel) {
        var $el = $(element);
        $timeout(function () {
          $el.selectpicker({
            style: 'btn-default',
            size: false
          });
        });
        $el.on('change', function (ee, aa) {
          ngModel.$setViewValue($el.val());
          scope.$apply();
        });
      }
    };
  });

次に、あなたのhtmlで:

<div ng-model="selected"
        class="selectpicker"
        options="issues"
        title='Choose one of the following...'>
</div>
于 2014-09-22T11:07:48.263 に答える