gpt4 book ai didi

javascript - 解码 ReadableByteStreams

转载 作者:行者123 更新时间:2023-12-03 06:35:17 27 4
gpt4 key购买 nike

var url = 'http://www.googleapis.com/customsearch/v1?q=foo&searchType=image';

window.fetch(url)
.then(decode)
.catch(err => console.log(err));

function decode(r) {
// r.body is a ReadableByteStream - how do I decode it to a string?
}

r.body 是一个 ReadableByteStream - 如何将其解码为字符串?

解码是正确的术语吗?

最佳答案

为此目的有内置解码器:

window.fetch(url)
.then(r => r.text())
.catch(err => console.log(err));

关于javascript - 解码 ReadableByteStreams,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38251055/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com