angularjs – 有条件地注入角度模块依赖性

前端之家收集整理的这篇文章主要介绍了angularjs – 有条件地注入角度模块依赖性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是角度新手并拥有以下代码.
angular.module('MyApp')
    .controller('loginController',['$scope','$http','conditionalDependency',function ($scope,$http,conditionalDependency{
}

我想有条件地加载conditionalDependency.像这样的东西

if(true)
{
//add conditionalDependency
}

如何才能做到这一点.我见过this post.但是,我的要求是我在函数中指定了依赖项

提前致谢.

不太清楚为什么你必须在你的例子中的命名函数中拥有它,但是……

如果您需要条件依赖项,我建议您查看以下内容

Conditional injection of a service in AngularJS

我已经在几个小众场景中使用了这种方法,并且效果很好.

例:

angular.module('myApp').controller('loginController',['$injector','$scope',function($injector,$scope,$http) {
        var service;

        if (something) {
            service = $injector.get('myService');
        }
    });
原文链接:https://www.f2er.com/angularjs/141544.html

猜你在找的Angularjs相关文章