0

いくつかの定数に保存できる別の .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);
    }
]);
4

1 に答える 1