当模板键包含文件扩展名时,角度模板缓存不起作用

时间:2017-02-09 23:47:26

标签: angularjs angularjs-routing angular-template angular-templatecache

当我这样做时,模板缓存因某些原因失败了:

angular.module('myApp').run([
    '$templateCache', function ($templateCache) {
        $templateCache.put('test.html', 'content');
    }
]);

然后使用routeProvider

$routeProvider.when("/my/url", {
              templateUrl: 'test.html'
          })

但是,如果我从" test.html"更改我的密钥只是"测试",它的工作原理。出于某种原因,我将文件扩展名添加到密钥后很快就会失败。

0 个答案:

没有答案