0
如果blog/xyz
不起作用,我想顯示404頁面。所以我加dataNotFound我routes.js,但我沒有任何結果:IronRouter dataNot在博客文章
Router.route('/blog/:slug', {
name: 'blogPost',
parent: 'blog',
itemName: function() {
return this.data().post.title;
},
data: function() {
let post = Posts.findOne({
'slug': this.params.slug
});
return {
post,
profil
};
}
});
Router.onBeforeAction('dataNotFound', {
only: 'blogPost'
});
如果我測試錯誤的URL與blog/ojhojeofje
,我沒有404頁,只是後沒有數據。
你有什麼想法嗎?
謝謝!
謝謝!完美的工作! –