gpt4 book ai didi

在 Deno 中使用 HTTP POST 的 Http 客户端

转载 作者:行者123 更新时间:2023-12-04 10:03:37 24 4
gpt4 key购买 nike

我想在 Deno 写一个 http 客户端使用 HTTP POST。目前在 Deno 中这可能吗?

作为引用,是在 Deno 中执行 http GET 的示例:

const response = await fetch("<URL>");

我看了 HTTP module在 Deno 中,它目前似乎只专注于服务器端。

最佳答案

另一个答案对 multipart/form-data 很有用-encoded 数据,但值得注意的是,同样的方法也可以用于提交其他编码的数据。例如,要 POST JSON 数据,您可以只对 body 使用字符串。参数,最终看起来像下面这样:

const messageContents = "Some message";
const body = JSON.stringify({ message: messageContents });
const response = await fetch(
url,
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: body,
},
);

关于在 Deno 中使用 HTTP POST 的 Http 客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61700772/

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