美文网首页
19.fetch Apis-fetch(新的http请求方法)

19.fetch Apis-fetch(新的http请求方法)

作者: Night_LION | 来源:发表于2018-06-06 22:35 被阅读0次
    /** 
     * new http: fetch
     * 一个基于promise的请求方法,更简单,更便捷
     */
    
    //  let promise = new Promise((resolve,reject) => {
    //     setTimeout(()=>{
    //         resolve();
    //     },3000)
    //     // resolve();
    //     // reject();
    //  });
    // //  console.log(promise);
    
    // promise
    //   .then(() => console.log("成功,没有任何问题!"))
    //   .then(() => console.log("成功,可以无限调用then方法!"))
    //   .catch(() => console.log("uh oh,出现了重大问题!"))
    
    
    // console.log(fetch);
    
    // http://jsonplaceholder.typicode.com/posts
    let url = "http://jsonplaceholder.typicode.com/posts";
     
    // console.log(fetch(url));
    
    fetch(url)
        .then(response => response.json())
        .then(data => console.log(data))
        .catch(err => console.log("error:" + err));
    

    相关文章

      网友评论

          本文标题:19.fetch Apis-fetch(新的http请求方法)

          本文链接:https://www.haomeiwen.com/subject/wwdusftx.html