golang post application/octet-stream
时间: 2024-01-09 15:20:00 浏览: 295
golang.org/x/sys/windows
5星 · 资源好评率100%
在golang中,使用POST请求提交application/octet-stream类型的数据时,需要注意Content-Type被固定为了application/octet-stream。如果需要提交其他类型的数据,可以通过设置Content-Type来实现。在使用mime/multipart包创建表单文件时,CreateFormFile函数会将Content-Type设置为application/octet-stream,如果需要提交其他类型的文件,可以在创建表单文件之后手动设置Content-Type。
阅读全文