Angularjs - 链接或控制器块中的指令最佳实践功能?

时间:2013-12-11 21:28:05

标签: angularjs angularjs-directive

我想知道什么是最好的地方 在指令中设置函数

//directive
app.directive("clickMe", function() {
                return {
                    restrict: "E",
                    templateUrl: 'clickMe.html',
                    controller: function ($scope) {
                        $scope.clickMe = function(){

                        }   
                    },
                    link: function (scope) {
                        scope.clickMe = function(){

                        }   
                    }

                }
            });
//template
<button ng-click="clickMe()">click me</button>

链接或控制器块?

0 个答案:

没有答案