我正在构建一个联系人应用程序,我希望这样做,以便在选择联系人时,它会链接到一个页面,在该页面中显示该特定人员的所有信息。
我将如何实施此功能?我正在考虑使用模态,但这似乎是更好的选择。
答案 0 :(得分:1)
iron router guide涵盖了这个以及更多内容:
<template name="Post">
<h1>Post: {{title}}</h1>
</template>
Router.route('/post/:_id', function () {
this.render('Post', {
data: function () {
return Posts.findOne({_id: this.params._id});
}
});
});
如果你刚开始使用meteor,你应该考虑flow-router。