当我这样做时,模板缓存因某些原因失败了:
angular.module('myApp').run([
'$templateCache', function ($templateCache) {
$templateCache.put('test.html', 'content');
}
]);
然后使用routeProvider
$routeProvider.when("/my/url", {
templateUrl: 'test.html'
})
但是,如果我从" test.html"更改我的密钥只是"测试",它的工作原理。出于某种原因,我将文件扩展名添加到密钥后很快就会失败。