我是角度新手并拥有以下代码.
angular.module('MyApp') .controller('loginController',['$scope','$http','conditionalDependency',function ($scope,$http,conditionalDependency{ }
我想有条件地加载conditionalDependency.像这样的东西
if(true) { //add conditionalDependency }
如何才能做到这一点.我见过this post.但是,我的要求是我在函数中指定了依赖项
提前致谢.
不太清楚为什么你必须在你的例子中的命名函数中拥有它,但是……
原文链接:https://www.f2er.com/angularjs/141544.html如果您需要条件依赖项,我建议您查看以下内容:
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'); } });