java - fetchAPI取代ajax請求為什麼不走第二個then而直接走了catch?
PHP中文网
PHP中文网 2017-04-18 10:56:31
0
1
666
var serverUrl = "http://43.254.150.58/b2c-web-cib"; //接口服务器

fetch(serverUrl + '/api/home/mallHome', {
    method: 'post',
    headers: {
     "Content-type": "application/x-www-form-urlencoded; charset=UTF-8"
    },
    body: 'json={}'
})
.then(function(response){
    console.log(response.json());
    return response.json();
})
.then(function(data){
    console.log(data);
})
.catch(function(e) {
    console.log("出错了");
});

console出來的結果是這樣的
Promise {[[PromiseStatus]]: "pending", [[PromiseValue]]: undefined}
出错了
我能肯定這個請求是成功的,而且展開這個Promise後是有值得,返回的值也正確,那到底哪裏出了問題呢?為什麼不走第二個then,而直接走了catch呢?
我打印 一下這個catch裏的參數e,結果是TypeError: Already read at test.html:19,意思是我在第一次then的時候已經讀取過了

對了,如果我想用async/await代替Promise應該怎麼寫呢?

PHP中文网
PHP中文网

认证0级讲师

全部回覆(1)
Ty80

問題出在你第一個then的console.log上

response是只能被讀取一次的,當呼叫了bolb,json,text或其他幾個讀取的介面之後,esponse的bodyUsed被設為true,就不能在此讀取了

console.log(response.json()); //第一次读取
return response.json();  //又读取了一次

讀取了兩次,自然就報錯已經讀取的錯誤了
所以你把第一個then改成這樣就可以了

    let jsonPromise = response.json()
    console.log(jsonPromise);
    return jsonPromise;

改成async/await的話,大概是這樣,不保證正確..

let doFetch = async () => {
    try {
        let resp = await fetch(serverUrl + '/api/home/mallHome', {
            method: 'post',
            headers: {
             "Content-type": "application/x-www-form-urlencoded; charset=UTF-8"
            },
            body: 'json={}'
        })
        let json = await resp.json()
    } catch (e) {
        console.log("出错了")
    }
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板