是否可以使用多部分表单数据进行 PUT 请求?
使用 Superagent,我希望以下内容可以正常工作,但事实并非如此。
var request = Request
.put("http://localhost:8080/upload_file")
.field("name", file.name)
.field("size", file.size)
.attach("file", file.file, file.file.name)
.accept("application/json")
如果我发帖,它会起作用。区别在于内容类型。成功发布请求后,Content-Type 为multipart/form-data; boundary=------WebKitFormBoundaryXg34NkBFcYWq60mH
.
如果我要手动设置它,我怎么知道边界应该是什么?它似乎是由 Superagent 自动生成的。