请把稳,fetch规范与jQuery.ajax()紧张有两种办法的不同,牢记:

当吸收到一个代表缺点的 HTTP 状态码时,从 fetch()返回的 Promise 不会被标记为 reject, 纵然该 HTTP 相应的状态码是 404 或 500。
相反,它会将 Promise 状态标记为 resolve (但是会将 resolve 的返回值的 ok 属性设置为 false ),仅当网络故障时或要求被阻挡时,才会标记为 reject。

默认情形下,fetch 不会从做事端发送或吸收任何 cookies, 如果站点依赖于用户 session,则会导致未经认证的要求(要发送 cookies,必须设置 credentials 选项)。
自从2017年8月25日后,默认的credentials政策变更为same-originFirefox也在61.0b13中改变默认值

phpfetch返回值JavaScript基本fetch的用法返回Promise返回值json化 Ruby

一个基本的 fetch要求

fetch('http://example.com/movies.json') .then(function(response) { return response.json(); }) .then(function(myJson) { console.log(myJson); });

这里我们通过网络获取一个JSON文件并将其打印到掌握台。
最大略的用法是只供应一个参数用来指明想fetch()到的资源路径,然后返回一个包含相应结果的promise(一个 Response 工具)。

当然它只是一个 HTTP 相应,而不是真的JSON。
为了获取JSON的内容,我们须要利用 json()方法(在Bodymixin 中定义,被 Request 和 Response 工具实现)。

支持的要求参数

fetch() 接管第二个可选参数,一个可以掌握不同配置的 init 工具:

// Example POST method implementation:postData('http://example.com/answer', {answer: 42}) .then(data => console.log(data)) // JSON from `response.json()` call .catch(error => console.error(error))function postData(url, data) { // Default options are marked with return fetch(url, { body: JSON.stringify(data), // must match 'Content-Type' header cache: 'no-cache', // default, no-cache, reload, force-cache, only-if-cached credentials: 'same-origin', // include, same-origin, omit headers: { 'user-agent': 'Mozilla/4.0 MDN Example', 'content-type': 'application/json' }, method: 'POST', // GET, POST, PUT, DELETE, etc. mode: 'cors', // no-cors, cors, same-origin redirect: 'follow', // manual, follow, error referrer: 'no-referrer', // client, no-referrer }) .then(response => response.json()) // parses response to JSON}

更多内容:https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch