1

Bootstrap モーダルを AngularJS で動作させたいと考えています。1つのモーダルは

    <div id="addToPlaylist" class="modal hide fade" aria-hidden="true" aria-labelledby="addToPlaylistLabel" role="dialog">
        <div class="modal-header">
                <h3>My Modal</h3>
            </div>
            <div class="modal-body">
MODAL BODY
            </div>
            <div class="modal-footer">
                <button class="btn btn-primary">Save</button>
            </div>
        </div>

ユーザーが既に持っているプレイリストに曲を追加するか、新しいプレイリストを作成します。曲のセットで使用したいのですが、一度に 1 つの曲でしか機能しません (今のところ)。

<div class="cell" ng-repeat="song in media.data">
</div> <!-- grid-wrapper -->

アンギュラーコントローラーは

'use strict';

angular.module('PortalApp')
  .controller('SongsCtrl', function ($scope, MediaService, $location, AudioPlayerAPI, FavoriteService) {

$scope.toggleFaves = function (song) {

  FavoriteService.toggle(song).success(function (response) {
    if (response.successFlag) {
      song.favorite = !song.favorite;        
    }
  });
}    

$scope.fetched = false;

});

どうすればこれを機能させることができますか?

PS jQuery は必要ありません。Angular にある jQuery Lite プラグインだけです。

4

2 に答える 2

3

AngularUI Bootstrap モーダル ( http://angular-ui.github.io/bootstrap/#/modal ) を確認する必要があります。データの受け渡しは非常に簡単で、すべて Angular 方式で機能します。

于 2013-09-18T20:46:07.240 に答える
0

Bootstrap モーダルを非表示および表示する再利用可能な Angular ディレクティブを次に示します。

app.directive("modalShow", function () {
    return {
        restrict: "A",
        scope: {
            modalVisible: "="
        },
        link: function (scope, element, attrs) {

            //Hide or show the modal
            scope.showModal = function (visible) {
                if (visible)
                {
                    element.modal("show");
                }
                else
                {
                    element.modal("hide");
                }
            }

            //Check to see if the modal-visible attribute exists
            if (!attrs.modalVisible)
            {

                //The attribute isn't defined, show the modal by default
                scope.showModal(true);

            }
            else
            {

                //Watch for changes to the modal-visible attribute
                scope.$watch("modalVisible", function (newValue, oldValue) {
                    scope.showModal(newValue);
                });

                //Update the visible value when the dialog is closed through UI actions (Ok, cancel, etc.)
                element.bind("hide.bs.modal", function () {
                    scope.modalVisible = false;
                    if (!scope.$$phase && !scope.$root.$$phase)
                        scope.$apply();
                });

            }

        }
    };

});

使用例 #1 - これは、モーダルを表示することを前提としています - 条件として ng-if を追加できます

<div modal-show class="modal fade"> ...bootstrap modal... </div>

使用例 #2 - これは modal-visible 属性で Angular 式を使用します

<div modal-show modal-visible="showDialog" class="modal fade"> ...bootstrap modal... </div>

別の例 - コントローラーの相互作用をデモするために、このようなものをコントローラーに追加すると、2 秒後にモーダルが表示され、5 秒後に非表示になります。

$scope.showDialog = false;
$timeout(function () { $scope.showDialog = true; }, 2000)
$timeout(function () { $scope.showDialog = false; }, 5000)

私はこの質問に貢献するのが遅れています - ここで別の質問のためにこのディレクティブを作成しました。Bootstrap Modal のシンプルな Angular ディレクティブ

お役に立てれば。

于 2013-10-29T21:12:39.797 に答える