身体未定义fetch,http

时间:2018-01-03 13:28:59

标签: http fetch

在正文服务器中写一些文字:“这是来自服务器的文本”。 我尝试阅读response.body,但是response.body未定义

fetch('https://somesite.com/restapi/session', {
        method: 'POST',
        mode: 'cors',
        credentials: 'include'
    }).then(response => {
            if (response.status === 200) {
                let username = response.body;
                ....
            }
        });

1 个答案:

答案 0 :(得分:0)

回答这个问题,以防其他人遇到这个问题。

fetch API提供了两种方法.json().text(),它们返回一个promise,它解析为API调用返回的结果。