div中的UI-Router默认视图

时间:2016-06-06 01:38:42

标签: javascript angularjs angular-ui-router state

假设我有index.html:

<div ui-view="viewA">
    // content
</div>

将内容放在div中是否可以作为默认路由?所以没有包含或其他任何东西,只需要在该div中直接添加一些标记。

1 个答案:

答案 0 :(得分:3)

有一个working plunker

这是可能的,而且非常简单。所以,让我们在index.html

中有这个
<div ui-view="">

  this is the content of ui-view, 
  which serves as a template for a default state

</div>

这可能是默认状态,否则

$urlRouterProvider.otherwise('/default');

// States
$stateProvider
  .state('default', {
      url: "/default",
  })

检查here