角度动画+ $ templateCache

时间:2014-01-16 16:33:29

标签: angularjs ng-animate

我有使用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: '/'
      });
  }]);

0 个答案:

没有答案