如何在模板 meteor js 之间传递数据
how to pass data between templates meteor js
我正在使用 Meteor js,我正在尝试将数据从一个模板传递到另一个模板,这是我的代码:
BuildingsAction.js
Template.BuildingsAction.viewmodel({
showExhibitions() {
FlowRouter.go("/exhibitions");
},})
实际上我想将 _id 从 BuildingsAction 传递给展览
Template.exhibitions.viewmodel({
onCreated: function () {
this.idItemParent(BuildingsAction_id)// here i whoud like to get the id
})}
有两种方法。
1.使用会话。
`Session.set('idVar',YourId);`
获取会话值:
Session.get('idVar');
2。您可以在 URL
中发送 id
FlowRouter.go("/exhibitions",{},{id:YourID});
获取查询参数值:
FlowRouter.getQueryParam("id");
我正在使用 Meteor js,我正在尝试将数据从一个模板传递到另一个模板,这是我的代码:
BuildingsAction.js
Template.BuildingsAction.viewmodel({
showExhibitions() {
FlowRouter.go("/exhibitions");
},})
实际上我想将 _id 从 BuildingsAction 传递给展览
Template.exhibitions.viewmodel({
onCreated: function () {
this.idItemParent(BuildingsAction_id)// here i whoud like to get the id
})}
有两种方法。
1.使用会话。
`Session.set('idVar',YourId);`
获取会话值:
Session.get('idVar');
2。您可以在 URL
中发送 idFlowRouter.go("/exhibitions",{},{id:YourID});
获取查询参数值:
FlowRouter.getQueryParam("id");