gpt4 book ai didi

Ktor 似乎正在吞咽异常

转载 作者:行者123 更新时间:2023-12-03 17:12:02 29 4
gpt4 key购买 nike

我正在将 Ktor 与 kotlin multiplatform 一起使用,我试图弄清楚为什么我没有收到任何抛出的异常。在我的客户端配置中,我使用了 HttpResonseValidator检查返回的状态代码

private val client = HttpClient(clientEngine) {
install(JsonFeature) {
serializer = KotlinxSerializer(Json.nonstrict)
}
// addDefaultResponseValidation()
HttpResponseValidator{

validateResponse { response: HttpResponse ->
val statusCode = response.status.value
when (statusCode) {
in 300..399 -> throw RedirectResponseException(response)
in 400..499 -> throw ClientRequestException(response)
in 500..599 -> throw ServerResponseException(response)
}

if (statusCode >= 600) {
throw ResponseException(response)
}
}

handleResponseException { cause: Throwable ->
throw cause
}
}
}

我正在返回 http 状态代码 401我的服务器上的测试错误,所以我应该看到我的代码抛出 ClientRequestExceptionvalidateResponse确实被调用,但我从未在控制台中看到任何异常,我的应用程序只是停止而没有任何指示发生任何事情。

这是我的电话
private suspend fun getDataForUrl(url:String, callback: (MyObject?) -> Unit){
val response = client.get<MyObject>(url)
callback(response)
}

它被称为通过
fun getData(callback: (MyObject?) -> Unit){
launch(dispatcher()){
getDataForUrl("$BASE_URL", callback)
}
}

当我用 try/catch 包围调用时
try{
val response = client.get<MyObject>(url)
catch(e:Exception){
}

我确实得到了异常,但我真的不喜欢它在这里被捕获而不是在我的代码的上层。

当它周围没有 try/catch 时,为什么它会被吞没?

最佳答案

我有这个 FATAL EXCEPTION在我的 Kotlin 多平台项目中也是如此。
我的 Ktor 方法如下所示:

suspend fun requestToken(userName: String, password: String): AuthResponse {
return client.post {
url(urlOauth)
accept(ContentType.Application.Json)
body = FormDataContent(Parameters.build {
append("grant_type", "password")
append("username", userName)
append("password", password)
})
}
}
HttpResponseValidator如果一切正常,则使用。但是当我强制出现错误时,例如,使用错误的 URL, HttpResponseValidator未使用,我的应用程序(在本例中为 iOS 应用程序)崩溃。
当我打开生成的 Swift 类时,我看到此注释添加到我的方法中:
/**
@note This method converts instances of CancellationException to errors.
Other uncaught Kotlin exceptions are fatal.
*/
这意味着所有其他错误都使我的应用程序崩溃。 CancellationExceptionsuspend有关.
为了防止崩溃并得到错误,我添加了 @Throws(CancellationException::class, ResponseException::class) .该方法现在看起来像这样:
@Throws(CancellationException::class, ResponseException::class)
suspend fun requestToken(userName: String, password: String): AuthResponse {
return client.post {
url(urlOauth)
accept(ContentType.Application.Json)
body = FormDataContent(Parameters.build {
append("grant_type", "password")
append("username", userName)
append("password", password)
})
}
}
这是我如何使用它:
ApiKt.requestToken(userName: "xxx", password: "xxx") { (response: AuthResponse?, error: Error?) in
if let response = response {
print("access token: \(response.accessToken)")
} else if let error = error {
print("failed to load access token. error: \(error)")
} else {
print("Something strange has happened. We have received neither a response nor an error.")
}
}
当我现在强制出错时,应用程序不会崩溃。相反,我收到一个错误并将其打印出来(在这种情况下)。
最后不知道为什么 HttpResponseValidator发生错误时不使用,但这可以防止 FATAL EXCEPTION .

关于Ktor 似乎正在吞咽异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61742388/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com