如何在控制器中从服务中分配功能

时间:2017-04-07 12:33:53

标签: javascript angularjs function service controller

如何在AngularJS中分配函数而不是在控制器中创建另一个新函数?为什么?,为什么不呢?

要做到这一点:

//controller as example
function exampleCtrl(customService) {
    var example = this;
    example.doAny = customService.doAny;
}

而不是:

//controller as example
function exampleCtrl(customService) {
    var example = this;
    example.doAny = doAny;

    function doAny() {
        customService.doAny();
    }
}

我很怀疑是因为:https://material.angularjs.org/latest/demo/dialog看看JS选项卡中的DialogController。

非常感谢。

0 个答案:

没有答案