我需要一个单独的.js文件,我可以存储在一些常量中。
我需要在app.js文件中使用此文件中的常量。
我正在使用的结构和我遇到的错误就像下面那个。
这个问题的原因和解决方案是什么?我怎样才能最好地处理这种情况? (无关紧要'价值'或'常数')
"错误:[$ injector:unpr]未知提供者:globalValueProvider< - globalValue< - AppController
的index.html
<script src="app/app.js" type="text/javascript"></script> //there it is
<script src="app/globalConstants.js" type="text/javascript"></script>
<script src="app/globalValues.js" type="text/javascript"></script>
app.js
var MyApp= angular.module("MyApp",
[
//is necessary?
//depency injection
...
]);
const.js
var MyApp= angular.module("MyApp");
MyApp.constant("globalConstant",
{
"data": "test" // all data, source, file whatever u say that's all.
});
value.js
var MyApp= angular.module("MyApp");
MyApp.constant("globalValue",
{
"data": "test" // all data, source, file whatever u say that's all.
});
控制器(在app.js中)
MyApp.controller("AppController",
[
"$scope", "$rootScope", "globalValue", "globalConstant",
function($scope,
$rootScope,
globalValue,
globalConstant) {
debugger;
console.log(globalValue);
console.log(globalConstant);
}
]);
答案 0 :(得分:0)
解决。检查您的视图脚本标记。 app.js必须排在最前面。感谢@Mr_Perfect