Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 534 Bytes

redirect.md

File metadata and controls

21 lines (15 loc) · 534 Bytes
标题 标签
redirect(重定向) browser(浏览器)

重定向到指定的 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');

应用场景