我有使用ngAnimate的SPA。如果这个应用程序工作没有$ templateCache动画工作正常,但如果我尝试从$ templateCache动画加载模板不起作用。 也许如果应用程序使用$ templateCache需要添加一些配置...
如何解决此问题?
我的观点
angular.module('Views', ['views/index.html']);
angular.module("views/index.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("index.html", '<.... html index tpl ....>');
}]);
应用
angular.module('MyApp', [
'ngRoute',
'ngAnimate',
'Views'
])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/index.html',
controller: 'IndexCtrl'
})
.otherwise({
redirectTo: '/'
});
}]);