可能重复:
AngularJS dependency injection of value inside of module.config
我无法将值()注入app.config()。这是代码(coffeescript)
window.app = angular.module("app", [])
app.value("template_path", "assets/angular/templates/users")
app.config(["$routeProvider","template_path" ($routeProvider, template_path) ->
console.log template_path
它正在抛出“未知提供商:app_path from app”错误
可能是config()方法不能注入value()设置值吗? 我使用的是1.0.2
答案 0 :(得分:18)
是的,您怀疑是正确的:无法将值注入配置块。 配置块只能注入常量和提供程序。