在Kotlin中,我有此API
@PostMapping("/templates/send")
open fun translateAndSend(
@RequestParam payload: TemplateTestData,
@RequestParam print: String,
@RequestParam files: List<MultipartFile>,
response: HttpServletResponse
) {
这个数据类
data class TemplateTestData(
val path: String?,
val targets: MutableList<String>,
val payload: MutableMap<String, Any?> = mutableMapOf()
)
,并且我正在尝试使用JSON发送文件和对象,但当前的设置不起作用。我正在发送标头content-Type-multipart / form-data,这是请求。