web-services – 在一个POST命令中卷曲多个数据

web-services – 在一个POST命令中卷曲多个数据,第1张

概述谁能告诉我是否可以(在命令行中)发出包含文件和其他参数的POST命令? 我想做的事情如下: curl -X POST -F "key=myKey&file=@myfile.txt" http://localhost:8080/myRestService/ 我在这个领域真的很新,请原谅我的基本问题. 但似乎效果不佳.有什么建议吗? 非常坦克 你应该使用-d param 查看手册页http://cu 谁能告诉我是否可以(在命令行中)发出包含文件和其他参数的POST命令?

我想做的事情如下:

curl -X POST -F "key=myKey&file=@myfile.txt"  http://localhost:8080/myRestService/

我在这个领域真的很新,请原谅我的基本问题.
但似乎效果不佳.有什么建议吗?
非常坦克

解决方法 你应该使用-d param

查看手册页http://curl.haxx.se/docs/manpage.html

If you start the data with the letter @,the rest should be a file
name to read the data from,or – if you want curl to read the data
from stdin. The contents of the file must already be URL-encoded.
Multiple files can also be specifIEd. Posting data from a file named
‘foobar’ would thus be done with –data @foobar.

尝试指定文件的完整路径.

总结

以上是内存溢出为你收集整理的web-services – 在一个POST命令中卷曲多个数据全部内容,希望文章能够帮你解决web-services – 在一个POST命令中卷曲多个数据所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1059919.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存