gpt4 book ai didi

fetch-api - Zapier POST出现错误 "body used already for"

转载 作者:行者123 更新时间:2023-12-04 17:43:23 25 4
gpt4 key购买 nike

基本上逐字逐句遵循code example,但尝试使用fetch发出POST请求

fetch('YOUR URL HERE', { method: 'POST', 'body': content })
.then(function (res) {
console.log(res.text());
return res.text();
})
.then(function (plain) {
var output = { okay: true, raw: plain };
callback(null, output);
})
.catch(callback);

出现带有以下内容的愤怒的红色框:

We had trouble sending your test through. Please try again. Error: Error: body used already for: https://YOURURLHERE



不确定是什么意思?

最佳答案

...然后我意识到这不是Zapier问题,而是fetch问题。

Google表示这是由于我在 promise 中所做的,通过尝试两次将res流作为文本读取(请注意两个res.text()调用)。

(在大约2分钟的时间里,我忽略了我认为是问题中不重要的细节的元凶console.log行)

关于fetch-api - Zapier POST出现错误 "body used already for",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50732616/

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