从ReadableStream对象中检索数据?
2022-08-30 00:11:06
如何从对象获取信息?ReadableStream
我正在使用Fetch API,但我没有从文档中看到这一点。
正文作为返回,我只想访问此流中的属性。在浏览器开发工具中的响应下,我似乎以JavaScript对象的形式将此信息组织到属性中。ReadableStream
fetch('http://192.168.5.6:2000/api/car', obj)
.then((res) => {
if(!res.ok) {
console.log("Failure:" + res.statusText);
throw new Error('HTTP ' + res.status);
} else {
console.log("Success :" + res.statusText);
return res.body // what gives?
}
})