我在我的应用程序中使用html2js和grunt创建了一个template.js,它包含了我所有的html模板。我正在使用我的app.js来获取这些文件的模板:
.config(['$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/');
$stateProvider.state('abcde', {
url: '/',
abstract: true,
templateUrl: 'app/sections/section1/section1.tpl.html'
})
我现在应该为模板网址声明什么来从template.js获取模板?