Meteor - 如何使用 Flowrouter 重定向到外部 url(例如 http://www.google.com)
Meteor - How to redirect to external urls(eg. http://www.google.com) using Flowrouter
我正在尝试支付网关,我想将用户重定向到由 quickwallet 提供的支付 url?任何解决方案?
像 FlowRouter.go(url);
提前致谢。
FlowRouter不支持重定向到外部路由url,你需要使用window.location.href
重定向到外部路由:
window.location.href = 'https://google.com';
我正在尝试支付网关,我想将用户重定向到由 quickwallet 提供的支付 url?任何解决方案? 像 FlowRouter.go(url); 提前致谢。
FlowRouter不支持重定向到外部路由url,你需要使用window.location.href
重定向到外部路由:
window.location.href = 'https://google.com';