我正在使用 ipfs-http-client 读取文件格式 infura 的内容,如何使用“cat”功能正确获取字符串/json 格式的数据?
const client = create({
url: ipfsUrl(),
headers: {
authorization: ipfsAuthPhrase(),
},
});
const cidformat = "f" + cid.substring(2);
const cidV0 = new CID(cidformat).toV0().toString();
const resp = await client.cat(cidV0);
let content = [];
for await (const chunk of resp) {
content = [...content, ...chunk];
}
console.log(content.toString());
现在我只是在控制台日志上得到一组二进制文件。