1

如何使用 ktor 从客户端上传列表文件?

我尝试:

newPostDto.images.map {
    append("images", it)
}

但它的变体不起作用。

4

1 回答 1

2

这是一个示例(有关更多信息,您可以查看此 repo以获取完整的图像文件上传示例)

client.submitFormWithBinaryData(
        formData {
            appendInput(key = ICON_FILE_PART, headers = Headers.build {
                append(HttpHeaders.ContentDisposition, "filename=${appId}_ic")
            }) {
                buildPacket { writeFully(icon.toByteArray()) }
            }
        }) {
        apiUrl("$APPLICATIONS_BASE_URL/${appId}/icon")
    }
于 2021-01-26T07:51:52.230 回答