Meteor-如何重定向到外部URL(例如。http://www.google.com)使用Flowrouter

Meteor-如何重定向到外部URL(例如。http://www.google.com)使用Flowrouter,meteor,flow-router,external-url,Meteor,Flow Router,External Url,我正在尝试支付网关,我想将用户重定向到quickwallet提供的支付url?有解决办法吗? 类似于FlowRouter.go(url)的东西; 提前感谢。FlowRouter不支持重定向到外部url,您需要使用window.location.href重定向到外部路由: window.location.href = 'https://google.com'; FlowRouter不支持重定向到外部url,您需要使用window.location.href重定向到外部路由: window.loc

我正在尝试支付网关,我想将用户重定向到quickwallet提供的支付url?有解决办法吗? 类似于FlowRouter.go(url)的东西;
提前感谢。

FlowRouter不支持重定向到外部url,您需要使用
window.location.href
重定向到外部路由:

window.location.href = 'https://google.com';

FlowRouter不支持重定向到外部url,您需要使用
window.location.href
重定向到外部路由:

window.location.href = 'https://google.com';