作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 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
}
}
}
401
我的服务器上的测试错误,所以我应该看到我的代码抛出
ClientRequestException
和
validateResponse
确实被调用,但我从未在控制台中看到任何异常,我的应用程序只是停止而没有任何指示发生任何事情。
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{
val response = client.get<MyObject>(url)
catch(e:Exception){
}
最佳答案
我有这个 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 应用程序)崩溃。
/**
@note This method converts instances of CancellationException to errors.
Other uncaught Kotlin exceptions are fatal.
*/
这意味着所有其他错误都使我的应用程序崩溃。
CancellationException
与
suspend
有关.
@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/
我有一个运行可执行文件并将输出通过管道传输到我的子进程标准输出的 python SubProcess 调用。 在 stdout 数据相对较小(~2k 行)的情况下,逐行读取和作为一个 block 读取
我是一名优秀的程序员,十分优秀!