此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

Response.redirect()

基线 广泛可用

自 2017年10月 起,此特性已在主流浏览器中得到支持,可在大多数设备和浏览器版本中正常使用。

Response 接口的 redirect() 方法返回一个可以重定向到指定 URL 的 Response

备注:主要和 ServiceWorker API 有关。A controlling service worker could intercept a page's request and redirect it as desired. This will actually lead to a real redirect if a service worker sends it upstream.

语法

js
Response.redirect(url)
Response.redirect(url, status)

参数

url

The URL that the new response is to originate from.

status 可选

用于 response 的可选的状态码 (e.g., 302.)

返回值

一个 Response 对象。

异常

异常类型 说明
RangeError status 不是一个重定向的状态码。
TypeError url 不可用。

示例

js
responseObj.redirect("https://www.example.com", 302);

规范

规范
Fetch
# ref-for-dom-response-redirect①

浏览器兼容性

参阅