如何从以前的模板中获取参数到当前模板的辅助方法中
How to get parameter from previous template into current template's helper method
我正在使用 Meteor + FlowRouters。
假设我有 2 个页面 Products 和 payments。用户从 Products 页面选择产品(我们将“_id”存储为隐藏字段)并重定向到 Payments。
场景:
产品页面(_id as 'queryparam') --------> 支付页面(如何在helper中获取_id?)
问题:
在付款页面,我想显示我们从产品页面传递的“_id”中的产品详细信息,作为结帐信息。我想在 Payments 的辅助方法中获取参数,该怎么做?
在我的付款页面
Payments.html
<template name="App_Payments">
<div>
{{id}}
</div>
</template>
Payments.js
import './Payments.html';
Template.App_Payments.helpers({
id() {
// below "id" is passed from Products page.
return FlowRouter.getQueryParam("id");
}
});
我正在使用 Meteor + FlowRouters。
假设我有 2 个页面 Products 和 payments。用户从 Products 页面选择产品(我们将“_id”存储为隐藏字段)并重定向到 Payments。
场景:
产品页面(_id as 'queryparam') --------> 支付页面(如何在helper中获取_id?)
问题:
在付款页面,我想显示我们从产品页面传递的“_id”中的产品详细信息,作为结帐信息。我想在 Payments 的辅助方法中获取参数,该怎么做?
在我的付款页面
Payments.html
<template name="App_Payments">
<div>
{{id}}
</div>
</template>
Payments.js
import './Payments.html';
Template.App_Payments.helpers({
id() {
// below "id" is passed from Products page.
return FlowRouter.getQueryParam("id");
}
});