关于 cURL 的使用,我有一个简单的问题。在我的 Google 搜索或手册页中没有找到太多明确的答案。
在这里讨论在发送文件/附件时使用任一--data
vs。--form
我很想知道主要区别是什么以及在什么情况下您会选择--data-binary
VS --form
?
POST“正文”可以通过--data (for application/x-www-form-urlencoded)
或发送--form (for multipart/form-data)
:
-F "foo=bar" # 'foo' value is 'bar'
-F "foo=<foovalue.txt" # the specified file is sent as plain text input
-F "foo=@foovalue.txt" # the specified file is sent as an attachment
-d "foo=bar"
-d "foo=<foovalue.txt"
-d "foo=@foovalue.txt"
-d "@entirebody.txt" # the specified file is used as the POST body
--data-binary "@binarybody.jpg"