重定向到一个 URL 。
使用 window.location.href
或 window.location.replace()
重定向到 url
。 传递第二个参数来模拟链接点击(true
- 默认值)或HTTP重定向(false
)。
const redirect = (url, asLink = true) => asLink ? (window.location.href = url) : window.location.replace(url);
redirect('https://google.com');