使用curl_formadd在多帖子中使用libcurl设置内容处置自由文本

发布于 2024-11-30 23:55:26 字数 135 浏览 0 评论 0原文

如何使用curl_formadd在多帖子中使用libcurl设置内容处置整个文本 例如,

将其设置为多/部分 http 帖子中的一个部分。

内容处置:表单数据;名称=“上传文件” 文件名=“text.zip” 谢谢, 纳伊姆

How I can set content-disposition whole text using libcurl in multi post using curl_formadd
e.g

set this for one part in multi/part http post.

Content-Disposition: form-data; name="UploadFile" filename="text.zip"
Thanks,
Naeem

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生面具三千个 2024-12-07 23:55:26

您无法使用 curl_formadd() 来“设置整个文本”。

curl_formadd() 只是创建一个结构并将其添加到“structcurl_httppost”结构的链接列表中,该链接列表是将指令传递给 libcurl 的。您可以自己构建并填充这样的链接列表,然后可以将文本设置为您喜欢的任何内容。

You cannot "set the whole text" using curl_formadd().

curl_formadd() just creates and adds a struct to a linked list of 'struct curl_httppost' structs, and that linked list is what passes instructions to libcurl. You can build and populate such a linked list yourself and then you can set the text to whatever you like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文