ここのドキュメントに従って、angular $templateCache サービスを挿入してアクセスしようとしています: https://docs.angularjs.org/api/ng/service/ $templateCache。また、独自のサービスを注入しようとしています。
var myApp = angular.module('my-app');
myApp.run([$templateCache, 'MyService', function($templateCache, myService) {
var contentPromise = myService.getContent();
contentPromise.then(function(content) {
$templateCache.put('myTemplate', content);
});
}]);
MyService は正常に挿入されますが、$templateCache はそうではありません。次のエラーが表示されます。
ReferenceError: $templateCache が定義されていません