Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试支付网关,我想将用户重定向到快速钱包提供的支付 URL?有什么解决办法吗?类似 FlowRouter.go(url); 提前致谢。
FlowRouter 不支持重定向到外部 url,需要使用window.location.href重定向到外部路由:
window.location.href
window.location.href = 'https://google.com';