module.config 내부 값의 AngularJS 의존성 주입 모듈에 대한 일부 도우미 값을 설정하려고 합니다.서비스와 가치를 시험해 봤지만 도움이 되지 않았다: var finance = angular.module('finance', ['finance.services']) .value("helpers", { templatePath: function (name) { return '/areas/scripts/finance/templates/' + name + '/index.html'; } }) .config(['$routeProvider', 'helpers', function ($routeProvider, helpers) { $routeProvider. when('/', { templateUrl: hel..