curl 命令上传文件
后端接口为 http://localhost/upload
后端获取文件用的 key
为 file
文件名为 1.png
等价于
input type="file" name="media">
curl
命令:
curl -F "file=@1.png" http://localhost/upload
后端接口为 http://localhost/upload
后端获取文件用的 key
为 file
文件名为 1.png
等价于
input type="file" name="media">
curl
命令:
curl -F "file=@1.png" http://localhost/upload