一个控制器和多个带ui-router的模板?

时间:2015-08-25 02:46:16

标签: javascript angularjs templates

我试图弄清楚我是否只需要为一个控制器注册三个状态。

我有这个错误模板:404.template.html,505.template.html和feature.template.html

目前我只使用feature.template.html向ui-router注册,我正在将控制器与他联系起来。那两个呢?我应该注册并关联同一个控制器吗?

例如:

$stareProvider
  .state({
    url: '/error',
    templateUrl: '/admin/error/feature.template.html',
    controller: 'ErrorController',
    controllerAs: 'ctrl'
  });

另外两个怎么样:404.template.html和505.template.html?

感谢。

0 个答案:

没有答案