【发布时间】:2014-08-30 04:06:24
【问题描述】:
这是我的路线:
this.route('showItem', {
path: '/item/:_id',
template: 'layout',
yieldTemplates: {
'content': {to: 'content'},
'item_details': {to: 'details'}
},
notFoundTemplate: 'notFound',
data: function () {
return null; //for test
}
})
还有notFound模板,很简单:
<template name="notFound">
Not found!
</template>
我不明白,为什么总是渲染 item_details 而从不渲染 notFound。
【问题讨论】:
标签: meteor iron-router