3

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,更加明了
}

Maggie_LMJ
42 声望0 粉丝