我在铁路由器中的数据上下文存在一个小问题
这是我的代码
我的收藏和路由
Prev_Coll=new Meteor.Collection('previous');
Router.map(function(){
this.route('previousPage',
{path:'/previousPage/:_id',
data: function(){
return Prev_Coll.findOne({_id:this.params._id});
}
});
});
我的插入命令
var ee=Prev_Coll.insert({J_one:one,J_two:two});
alert(ee);
Router.go('previousPage', {_id: ee});
我的上一页
<template name="previousPage">
<p> {{_id}}
{{J_one}}
{{J_two}}</p>
</template>
此页面中没有显示任何内容。我的问题是如何从数据上下文中读取数据。
我正在以正确的方式做事吗?
任何人都能指出我的答案。任何帮助表示感谢。
提前致谢