我想将常量注入angularjs中的app.config()
步骤。但是不起作用。我怎么能做到这一点?
var app = angular.module(..);
app.constant('MY_CONST', {
//...
};
app.config(['MY_CONST', function($routeProvider, MY_CONST) {
//...
}
结果:Error [$injector:modulerr]
答案 0 :(得分:1)
您忘记在配置中注入$routeProvider
。
app.constant('MY_CONST', {
//...
}); // Missing ) here
app.config(['$routeProvider', 'MY_CONST', function($routeProvider, MY_CONST) {
// ^^^^^^^^^^^^^^^^
//...
}); // Missing ) here