我一直在使用Meteor + Iron路由器来处理我正在研究的多页面应用程序,而且我已经陷入了关于命名率的辅助函数。具体来说,我一直试图让我的导航栏选项卡的活动类更新每个路由更改。
以下是我项目的相关代码:
Router.configure({
layoutTemplate: 'mothership',
yieldTemplates: {
'header' : {to: 'header'},
'footer': {to: 'footer'}
},
});
Router.map(function () {
// Home page
this.route('home', {
path: '/',
template: 'home',
});
this.route('about', {
path: '/about',
template: 'about',
});
this.route('emails', {
path: '/emails',
template: 'emails',
});
this.route('people', {
path: '/people',
template: 'people',
});
});
<template name="mothership">
<a href="#content" class="sr-only">Skip to content</a>
<div id="wrap">
<!-- header -->
<div>{{yield 'header'}}</div>
<div id="content">{{yield}}</div>
</div>
<div id="push"></div>
<div id="footer">
{{yield 'footer'}}
</div>
</template>
...bootstrap stuff...
<a class="navbar-brand" href="{{pathFor 'home'}}">Mailchacho</a>
<li class="{{activeRoute 'about'}}"><a href="{{pathFor 'about'}}">About</a></li>
<li class="{{activeRoute 'emails'}}"><a href="{{pathFor 'emails'}}">Sent Emails</a></li>
<li class="{{activeRoute 'people'}}"><a href="{{pathFor 'people'}}">People</a></li>
...bootstrap stuff...
Handlebars.registerHelper('activeRoute', function(name) {
var active = location.pathname === Router.path(name);
return (active) ? 'active' : '';
});
// I know I can use Template.headers.helpers... to do this as well, I just found the registerHelper to be cleaner.
当我从头开始加载页面时,会分配正确的活动类,但是当在页面上更改路由时,活动类不会更新。使用断点,我可以看到在更改时没有调用'activeRoute'函数。
有趣的是,如果我向router.js添加数据字典,会更新。我的猜测是数据字典表明路由之间发生了某些变化,迫使刷新。我想做的是在不需要传递数据字典的情况下进行刷新。
由于Iron Router仍然相当新,我无法在网上找到太多东西。我发现的最接近的是github上的这个问题(https://github.com/EventedMind/iron-router/issues/103),但是最后的评论从未解决,这似乎与我的相似。
考虑到上述情况,有什么方法可以指示辅助函数在路由更改时重新运行而不传递虚拟数据字典?我觉得可能需要像Deps.autorun这样的东西,但这感觉不对。我对Meteor&amp; amp;铁路由器所以任何帮助在这里将不胜感激。谢谢!
答案 0 :(得分:6)
你的是一个常见问题,所以Mike Fitzgerald已经为此建立了一个包:
https://atmosphere.meteor.com/package/iron-router-active
给出的例子如下:
<nav>
<ul>
<li class="{{ isActive 'dashboard' }}">...</li>
<li class="{{ isActive 'dashboard|root' }}">...</li>
<li class="{{ isActive 'users' 'on' }}">...</li>
<li class="{{ isActivePath 'products' }}">...</li>
</ul>
</nav>
andd通过名为isActive
,isActivePath
,isNotActive
和isNotActivePath
的把手助手工作。
答案 1 :(得分:-1)
我现在使用meteor add zimme:active-route
。它适用于iron:router
,kadira:flow-router
和meteorhacks:flow-router
。
仅举两个例子:输出active
类:
<li class="{{isActiveRoute 'home'}}">...</li>
自定义类:
<li class="{{isActiveRoute 'home' class='is-selected'}}">...</li>