ui-router:templateUrl函数中的异步数据

时间:2015-06-21 12:28:11

标签: javascript angularjs angular-ui-router promise angular-promise

我遇到了ui路由器的一个新问题。我基本上是在尝试查询我的API以获取模板URL,该模板URL存储并作为Resource对象返回。问题是,似乎templateUrl函数返回未定义。我的代码如下:

(function() {
    'use strict';

  angular.module('myApp')
    .config(function ($stateProvider, PageProvider, $httpProvider) {
      $stateProvider
        .state('core', {
          abstract: true,
          templateUrl: 'app/core/core.index.html',
          controller: 'CoreController',
          controllerAs: 'vm'
        })
        /* Parent page view */
        .state('core.page', {
          url: '/:slug',
          views: {
            'page_content@core': {
              templateUrl: function(params) {
                var slug = params.slug;
                // only need to load core template
                var url = 'assets/templates/' + slug + '.html';

                return url;
              },
              controller: 'PageController',
              controllerAs: 'vm'
            }
          }
        })
        .state('core.page.child', {
          url: '/:child',
          views: {
            'page_content@core': {
              templateUrl: function($stateParams) {
                PageProvider
                  .$get() // $get() returns Page service
                  .findOne($stateParams.child)
                  .$promise
                  .then(function(data){
                    return data.template.url;
                  });
              }
            }
          }
        });
      });
})();

我为我的状态'core.page.child'设置了一个断点,看看范围内有哪些变量,我发现了一些非常奇怪的东西:

url here is undefined...

but it logs out the correct templateUrl value from the promise

我真的不明白为什么会发生这种情况,因为.then(cb)仅在解析了promise之后被调用,这意味着它应该按预期返回正确的值 - 但事实并非如此。

非常感谢任何帮助。

编辑:我应该补充一点,发生的事情是ui-router根本就没有加载我的模板 - 我得到一个空的ui-view。我最初认为我的$stateProvider配置可能存在问题,但情况似乎并非如此。

Edit2:我根据调用堆栈挖掘了一些源代码。看起来你们两个都是正确的 - ui-router不能使用promises。

/**
 * @ngdoc function
 * @name ui.router.util.$templateFactory#fromConfig
 * @methodOf ui.router.util.$templateFactory
 *
 * @description
 * Creates a template from a configuration object. 
 *
 * @param {object} config Configuration object for which to load a template. 
 * The following properties are search in the specified order, and the first one 
 * that is defined is used to create the template:
 *
 * @param {string|object} config.template html string template or function to 
 * load via {@link ui.router.util.$templateFactory#fromString fromString}.
 * @param {string|object} config.templateUrl url to load or a function returning 
 * the url to load via {@link ui.router.util.$templateFactory#fromUrl fromUrl}.
 * @param {Function} config.templateProvider function to invoke via 
 * {@link ui.router.util.$templateFactory#fromProvider fromProvider}.
 * @param {object} params  Parameters to pass to the template function.
 * @param {object} locals Locals to pass to `invoke` if the template is loaded 
 * via a `templateProvider`. Defaults to `{ params: params }`.
 *
 * @return {string|object}  The template html as a string, or a promise for 
 * that string,or `null` if no template is configured.
 */
this.fromConfig = function (config, params, locals) {
  return (
    isDefined(config.template) ? this.fromString(config.template, params) :
    isDefined(config.templateUrl) ? this.fromUrl(config.templateUrl, params) :
    isDefined(config.templateProvider) ? this.fromProvider(config.templateProvider, params, locals) :
    null
  );
};

似乎我要么必须使用$stateProvider.decorator,要么破解ui-router的核心。我想我可能会做后者并提交PR。我也会在github repo上发布这个问题,看看ui-router团队中是否有人解决了这个问题。

1 个答案:

答案 0 :(得分:1)

Working plunk

您可以使用resolvetemplateProvider来执行此操作。

  .state('child', {
      url: '/:child',
      resolve: {
        childTemplate: function ($stateParams, $templateRequest) {
          return $templateRequest($stateParams.child + ".html");
        }
      },
      templateProvider: function(childTemplate) { 
        return childTemplate;
      }
  });

这会创建一个使用$stateParams来获取模板的解析(我使用$templateRequest来获取,添加到$templateCache,并将所有内容一起返回)。然后,将已解析的模板内容注入视图的templateProvider。