0
林入門Meteor,我用鐵路由器操作路線.. 所以我想通過一個變量的模板:流星傳遞變量,鐵路線
Router.route('/foo', function(){
this.render('foo', {name: 'Stack'});
});
我怎麼能顯示在變量name
模板FOO:
<template name="foo">
<h2>Hi bro, how i can show the variable name here ?? </h2>
</template>
我的項目文件夾的結構如下:
/client
---/views
------foo.html
---/layout
------layout.html
/public
/server
的layout.html:
<template name="layout">
{{> yield}}
</template>
任何解決方案,請:)