angular.js - How to use ng-click in directive
阿神
阿神 2017-05-15 17:12:06
0
2
564
    return {
        restrict: 'E',
        replace: true,
        scope: {
            cancelFunc: '&'
        },
        template: '<section class="part-load">'
        + '<p class="part-text">正在加载</p>'
        + '<p class="part-close border-left" ng-click="cancelFunc"></p>'
        + '</section>',
        link: function (scope, elem, attrs) {

        }
    }
}]);

As above, a command partload is defined, expecting the attribute value cancelFunc to be passed in, binding the ng-click event, html structure:

<partload cancel-func="stop()"></partload>
A

method is defined in the stop controller:

$scope.stop = function () {
            alert(1)
}

But it doesn’t trigger, why? How to solve it?

阿神
阿神

闭关修行中......

reply all(2)
黄舟

Thanks for the invitation

The address of the online example: https://plnkr.co/edit/LBb4dN7...
The only difference from young-click="cancelFunc()"

迷茫

Thanks for the invitation

I also made an online example: https://embed.plnkr.co/SirYJd...

Try this

return {
        restrict: 'E',
        replace: true,
        scope: {
            cancelFunc: '&'
        },
        template: '<section class="part-load">'
        + '<p class="part-text">正在加载</p>'
        + '<p class="part-close border-left" ng-click="_cancelFunc()"></p>'
        + '</section>',
        link: function (scope, elem, attrs) {
            scope._cancelFunc = function(){
                // 这里可以写一些指令内部逻辑
                scope.cancelFunc({id: 1}); // { id : 1 } 传参
            }
        }
    }
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template