我在项目中使用Kotlin本机,我为https方法创建了本机类,以通过Comparator<A<String, Integer>> c = wrap((L, R) -> Integer.compare(L, R));
c = c.thenComparing(wrap((L, R) -> Integer.compare(L, R)));
库从REST API
获取响应,我在ktor
层上实现了我的代码在Common
和Android
中,在iOS
上一切正常并得到响应,但在Android
上没有收到任何响应,而没有得到任何{{1 }}。
我确实尝试过并用2个差异模式实现,第一种方法是iOS
,第二种方法是Exception
,但是所有方法都不适用于observer
我的问题在哪里?
在closure
中:
iOS
在common
项目上使用时:
fun createRequest(bar: (m: String) -> Unit) {
val client = HttpClient()
val call = client.call("https://google.com") {
method = HttpMethod.Get
}
bar(call.response.readText())
}