2019-12-04
描述
重定向到一个指定的 URL。
提示
- 使用
window.location.href
或者window.location.replace()
来重定向到指定的url
- 传入的第二个参数用来模拟一个链接的点击(
true
- 默认)或者一个 HTTP 的重定向(false
) - 相关文章:浏览器 - https 重定向
代码
const redirect = (url, asLink = true) =>
asLink ? (window.location.href = url) : window.location.replace(url);
示例
重定向到黑客派:
redirect('https://hacpai.com');