1

次の angularjs ディレクティブがあり、ng-click を使用して、property-slider.html 内で showMap() を実行できるようにしたいと考えています。私は何が欠けていますか?

(function() {
    'use strict';

    angular
        .module('myapp')
        .directive('propertySlider', propertySlider);

    function propertySlider($timeout) {

        return {
            restrict: 'E',
            templateUrl: 'property-slider.html',
            replace: true,
            scope: {
                property: '=',
                photos: '='
            },
            link: function(scope, element) {
                $timeout(function(){

                    var slider = element.flickity({
                        cellAlign: 'left',
                        cellSelector: '.gallery-cell',
                        lazyLoad: true,
                        wrapAround: true,
                        initialIndex: 1
                    });

                    var showMap = function(){
                        slider.flickity('select', 0);
                    };

                },500);

            }
        };

    }

})();
4

2 に答える 2

1

2つの問題....関数をスコープに割り当てる必要があり、内部に作成する必要はありません$timeout

link: function(scope, element) {

     scope.showMap = function () {
         element.flickity('select', 0);
     };

     $timeout(function () {

          element.flickity({
             cellAlign: 'left',
             cellSelector: '.gallery-cell',
             lazyLoad: true,
             wrapAround: true,
             initialIndex: 1
         });

     }, 500);
}
于 2015-09-26T00:10:44.100 に答える
1

を使用する代わりにng-click、メソッドをディレクティブに対して「プライベート」にして、要素のイベントを検出することもできます。

link: function(scope, element, attrs) {
    element.on('click', function(e) {
        showMap();
    });

    var showMap = ...
}
于 2015-09-26T00:15:42.620 に答える