20
自從將Meteor升級到版本1.0以來,其他人是否從Iron-Router獲得以下錯誤?Meteor v 1.0和Iron:路由器
如果你知道如何解決這個問題,請在這裏發帖。
路由調度從未呈現。你忘了撥
this.next()
在onBeforeAction
?
Router.map(function() {
Router.route('profileShow', {
waitOn: function() {
if (Meteor.user()) {
Meteor.subscribe('userData');
} else {
this.next();
}
},
data: function() {
if (Meteor.user()) {
return {profile: Meteor.user().profile};
}
}
});
});
只是要補充一點,即使消息說它是onBeforeAction,它也可能是onRun導致錯誤。錯誤信息可能會更好。 – 2014-12-22 15:34:21