标签: meteor flow-router external-url
我正在尝试支付网关,我想将用户重定向到由quickwallet提供的付款网址?有解决方案吗 像FlowRouter.go(url); 在此先感谢。
答案 0 :(得分:2)
FlowRouter不支持重定向到外部网址,您需要使用window.location.href重定向到外部路由:
window.location.href
window.location.href = 'https://google.com';