用玉模板渲染我的主页,我成功地将玉文件构建为html。但是,在我的app.js中,我的templateUrl没有反映应为'partials/home.html
而不是partials/home
的更改。运行找不到主页的生产文件时出现此问题。如何通过转换为partials/home.html
来解决此问题。
app.js
myApp.config(['$routeProvider','$locationProvider','$httpProvider',
function ($routeProvider, $locationProvider, $httpProvider) {
$locationProvider.html5Mode(true).hashPrefix('!');
$httpProvider.interceptors.push('APIInterceptor');
$routeProvider
.when('/', {
templateUrl: 'partials/home',
controller: 'HomeController'
})
})
Gruntfile.js
grunt.registerTask('build', [
'clean', 'jade',
'copy:html', 'copy:main', 'copy:vendorJS',
'html2js',
'useminPrepare',
'concat',
'uglify',
'cssmin',
'rev',
'copy:vendorCSS',
'copy:vendorJS',
'copy:images',
'usemin'
]);
谢谢。