我正在尝试使用Meteor和Angular JS为应用程序构建手风琴式导航。我有一个像这样的文章列表:
州:
$stateProvider
.state('articles', {
url: '/articles',
template: '<articles></articles>'
});
<articles>
:
<div class="article-entry" ng-repeat="article in articles.list" slug="{{article.slug}}">
<div class="inner">
//...
<div ui-view="{{article.slug}}"></div>
<a ui-sref="article.content({slug: article.slug})">View article</a>
</div>
</div>
然后文章内容:
$stateProvider
.state('articles.content', {
url: '/:slug',
template: '<content></content>'
});
文章内容是 <content>
,你猜对了。
当有人访问<content>
州时,是否可以让ui-view
显示在与其关联的articles.content
中?我该怎么做?