UserAgent
関数内で呼び出された AngularJS プロバイダーの挿入に失敗してい.config
ますが、次のエラーが発生しています。
Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to:
Error: [$injector:unpr] Unknown provider: UserAgent
これは私の設定です:
angular
.module('app')
.config(Config);
Config.$inject = ['$routeProvider', 'UserAgent'];
function Config($routeProvider, UserAgent) {
/*** code here ***/
}
そして、これは私のプロバイダーです:
angular
.module('app')
.provider('UserAgent', UserAgent);
function UserAgent() {
return {
$get: function () {
return {
title: "Testing..."
};
}
};
}