答案 0 :(得分:7)
您可以在帮助函数中调用Router.current().path
,它将返回当前路径。然后在/
上拆分路径并将数组返回到breadcrumbs模板。该函数是被动的,因此更新将传播:
Template.breadcrumbs.path = function() {
return Router.current().path.split( "/" );
}
答案 1 :(得分:4)
使用Meteor 1.0和Iron.Router,它将是:
Template.breadcrumbs.helpers({
path: function() {
return Router.current().route.path(this).split( "/" );
}
});
请注意,不建议使用方法向模板引擎Template.breadcrumbs.path = function() {}
添加方法。