Postman - POST multipart/form-data

说明

  • 以POST方式提交表单

案例

  • 方法选择POST
  • 再 body 处选择form-data
  • 多个表单内容,可以选择文本,也可以选择文件。
  • 都是以 Key-Value 的方式上传,然后再服务器端接收。

// micronaut 2.x

@Post(value = "/test4", consumes = MediaType.MULTIPART_FORM_DATA, produces = MediaType.TEXT_PLAIN)
Single<HttpResponse<String>> upload(StreamingFileUpload file,String other) {
    File tempFile = File.createTempFile(file.filename, "temp")
    Publisher<Boolean> uploadPublisher = file.transferTo(tempFile)
    Single.fromPublisher(uploadPublisher)
            .map({success ->
                if(success){
                    HttpResponse.ok("Uploaded" + other)
                } else {
                    HttpResponse.status(HttpStatus.CONFLICT)
                    .body("UploadFailed")
                }
            })
}
posted @ 2020-10-29 15:33  duchaoqun  阅读(1382)  评论(0编辑  收藏  举报