4

我在发送一个 http 请求时遇到问题,该请求有一个 File 作为正文中的参数之一。API 返回的响应不是我所期望的,所以我认为代码有问题。

suspend fun post(url: String, bodyParameters: MutableMap<String, Any>, headerParameters:
    MutableMap<String, String>? = null): HttpResponse?{

        val client = HttpClient()

        try {
            val call = client.call(url) {
                method = HttpMethod.Post
                body = MultiPartFormDataContent(
                    formData {
                        bodyParameters.forEach{(key, value) ->
                            when(value) {
                                is String -> {
                                    append(key, value)
                                }

                                is File -> {
                                    append(key, value.inputStream().asInput())
                                }
                            }
                        }
                    }
                )
            }
            if(call.response.status.value == 500) {
                return null
            }
            return call.response

返回的响应状态是未发送文件时的预期状态。关于为什么这不起作用的任何想法?有没有其他方法可以用 Ktor 做到这一点?

4

0 回答 0