angularjs - 如何从指令部分调用 ng-click?

标签 angularjs angularjs-directive angularjs-ng-click

我有一个指令,它的局部作用域包含 ng-click。

fiddle 在那里:http://jsfiddle.net/stephanedeluca/QRZFs/13/

不幸的是,由于我将代码移动到指令中,ng-click 不再触发。

Controller 和指令如下:

var app = angular.module('myApp', ['ngSanitize']);

app.directive('plantStages', function ($compile) {
    return {
        restrict: 'E',
        transclude: true,
        template: '<figure class="cornStages">\
                        <p ng-transclude style="color: skyblue"></p>\
                        <hr/>\
                        <p ng-bind-html="title"></p>\
                        <p ng-bind-html="subtitle">{{subtitle}}</p>\
                        <ul>\
                            <li ng-repeat="stage in stages" ng-click="changePage(stage)">{{stage}}</li>\
                        </ul>\
                    </figure>',
        scope: {
            stages:"=",
            title:'@'
        },
        link: function (scope, element, attrs, ctrl, transclude) {
            if (!attrs.title) scope.title = "Default title";
        }
    };
});

app.controller('myCtrl', function ($scope, $location, $http) {
    $scope.stages = ['floraison', 'montaison'];
    $scope.changePage = function (page) {
        var url = "corn.page.html#/"+page;
        console.log("Change page "+page+" with url "+url);
        alert("about to change page as follows: document.location.href = "+url);
    };

});

调用它的html如下:

<div ng-controller="myCtrl">
    Stages, 
    <p ng-repeat="stage in stages">{{stage}}</p>
    <hr/>
    Plant stages
    <plant-stages 
        title="<b>Exploration<br/>du cycle</b>"
        subtitle="<em>This is a<br/>sub title</em>"
        stages="stages"
    >
        Inner<br/>directive
    </plant-stages>
</div>

有什么想法吗?

最佳答案

您不能直接从指令访问 Controller 范围中定义的 changePage(),因为您的指令具有隔离范围。但是,仍然有几种方法可以做到:

选项 1:

选项 1 是最简单的选项。但是,它很像一种解决方法,我不建议广泛使用它。您可以从传递给链接函数的元素中获取 Controller 的范围,并在那里调用 changePage:

link: function (scope, element, attrs, ctrl, transclude) {
    if (!attrs.title) scope.title = "Default title";
    scope.changePage = element.scope().changePage; // <= Get parent scope from element, it will have changePage()
}

选项 2:

如果您没有任何涉及在外部 Controller 中定义的范围的逻辑(如您的示例中所示),您可以为您的指令定义内部 Controller 并在那里执行它:

app.directive('plantStages', function ($compile) {
    return {
       ...
       controller: ['$scope', function($scope) {
           $scope.changePage = function(page) {
               var url = "corn.page.html#/"+page;
               console.log("Change page "+page+" with url "+url);
               alert("about to change page as follows: document.location.href = "+url);
           }
       }]
    };
});

选项 3:

如果您想在不同的指令和 Controller 中重用 changePage() 中定义的逻辑,最好的方法是将逻辑移动到可能同时注入(inject)到 Controller 和指令的某些服务中:

app.service('changePageService', function() {
    this.changePage = function(page) {
        var url = "corn.page.html#/"+page;
        console.log("Change page "+page+" with url "+url);
        alert("about to change page as follows: document.location.href = "+url);
    }
});

app.controller('myCtrl', function ($scope, $location, $http, changePageService) {
    ...
    changePageService.changePage('page');
    ...
});

app.directive('plantStages', function ($compile) {
    ...
    controller: ['$scope', 'changePageService', function($scope, changePageService) {
        $scope.changePage = changePageService.changePage;
    }]
    ...
});

选项 4:

您可以将像 changePage(page) 这样的代码作为指令的某些属性的值传递,并且在指令内部使用 '&' 定义范围属性,这将创建一个将在外部 Controller 范围内执行的函数,参数传递给该函数。示例:

JavaScript

app.directive('plantStages', function ($compile) {
    return {
        restrict: 'E',
        transclude: true,
        template: '<figure class="cornStages">\
                        <p ng-transclude style="color: skyblue"></p>\
                        <hr/>\
                        <p ng-bind-html="title"></p>\
                        <p ng-bind-html="subtitle"></p>\
                        <ul>\
                            <li ng-repeat="stage in stages" ng-click="changePage({page: stage})">{{stage}}</li>\
                        </ul>\
                    </figure>',
        scope: {
            stages:"=",
            title:'@',
            changePage:'&'
        },
        link: function (scope, element, attrs, ctrl, transclude) {
            if (!attrs.title) scope.title = "Default title";
        }
    };
});

HTML

<div ng-controller="myCtrl">
    Stages, 
    <p ng-repeat="stage in stages">{{stage}}</p>
    <hr/>
    Plant stages
    <plant-stages 
        title="<b>Exploration<br/>du cycle</b>"
        subtitle="<em>This is a<br/>sub title</em>"
        stages="stages"
        change-page="changePage(page)"
    >
        Inner<br/>directive
    </plant-stages>

Plunker: http://plnkr.co/edit/s4CFI3wxs0SOmZVhUkC4?p=preview

关于angularjs - 如何从指令部分调用 ng-click?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23443573/

相关文章:

angularjs - 单击 Angular js后禁用链接

javascript - Angular 理解链接函数

javascript - Angular 1.x 在指令模板体内消耗外部作用域

javascript - Angularjs 在移动设备上出现 ng-click 问题

html - 浏览器在 grunt/angular 应用程序中缓存 HTML 页面。 build 时如何使它无效?

javascript - 在 Angular JS 的动态下拉列表中选择默认值

javascript - 双单选按钮选择错误 AngularJs

angularjs - 不允许在文本字段中使用空格的 Angular 限制

AngularJS 可重用的模态 Bootstrap 指令

javascript - 如何使用 Controller 变量和 ng-click 来切换类?