fetch是基于promise举行完成的
对应npm兼容包:
node-fetch //兼容node效劳的fetch
iso-whatwg-fetch //兼容safari中的fetch
eg:
fetchData(){
fetch(url, {
method: 'post', //这个不必诠释了吧
body: JSON.stringify(data), //转换为json,要和header对象中的ContentType保持一致
headers: {
'Content-Type': 'application/json'
},
credentials: 'include' ,
mode: 'cors'
}).then((response) => response.json())
}
挪用对应的fecthData返回一个promise对象
eg:
fetchData().then((data) => {
you can do everything on data
})
以上代码的诠释:
credentials: ‘include’|‘omit’ | ‘same-origin’
//该值代表request中是不是照顾cookie到效劳器端
//omit : 默许值,不照顾cookie到效劳器
//same-origin: 许可从当前域下照顾cookie到效劳器端,相对应效劳器端的this.set('Access-Control-Allow-Credentials', true)
//include: 许可照顾all-sites下的cookie到效劳器端,效劳器端要设置响应的Allow-Credentials
mode: 'no-cors' | 'cors'
//该值代表当前要求是不是能够跨域
//no-cors: 默许值, fetch默许是不跨域的
//cors: 能够发送跨域要求,相对应效劳器端的 this.set('Access-Control-Allow-Origin', this.get('Origin') || '*');
fetch包括的经常使用对象:
new Request()
new Response()
new Headers()
这三个对象能够详细应用到fetch中:
将上面的例子能够改写;
fetchData() {
let header = new Headers({
'Content-Type': 'application/json'
})
let request = new request({
method: 'post', //这个不必诠释了吧
body: JSON.stringify(data), //转换为json,要和header对象中的ContentType保持一致
headers: header, //声明的header对象
credentials: 'include' ,
mode: 'cors'
})
fetch(url, request).then((response) => response.json()) //less code,越发清楚明了
}