KotlinJs - 没有动态类型功能的简单 HTTP GET
KotlinJs - simple HTTP GET without Dynamic Type functionality
我是 KotlinJs 的新手,我想看看它在无服务器服务开发中的潜力。
我决定使用 KotlinJs 中建议的 XMLHttpRequest()
使用 HTTP GET 方法调用外部 API 开始文档。但是,如果没有 dynamic
机制,我无法想出任何使用它的方法。
fun main(args: Array<String>) {
val url = "https://jsonplaceholder.typicode.com/todos/1"
var xhttp: dynamic = XMLHttpRequest()
xhttp.open("GET", url, true)
xhttp.onreadystatechange = fun() {
if (xhttp.readyState == 4) {
println(xhttp.responseJson)
}
}
xhttp.send()
}
当然这个例子工作得很好,但我觉得 它必须是更好的方法来做到这一点而不禁用 Kotlin 的类型检查器。
- 有什么方法可以只使用 KotlinJs(没有动态)吗?
- 如果不可能,至少有人能解释一下为什么吗?
我找到了一种不使用动态回调的方法,就像在经典 .js 中一样
private fun getData(input: String, callback: (String) -> Unit) {
val url = "https://jsonplaceholder.typicode.com/todos/$input"
val xmlHttp = XMLHttpRequest()
xmlHttp.open("GET", url)
xmlHttp.onload = {
if (xmlHttp.readyState == 4.toShort() && xmlHttp.status == 200.toShort()) {
callback.invoke(xmlHttp.responseText)
}
}
xmlHttp.send()
}
而不只是称呼它:
getData("1") {
response -> println(response)
}
希望对以后的人有所帮助。
我是 KotlinJs 的新手,我想看看它在无服务器服务开发中的潜力。
我决定使用 KotlinJs 中建议的 XMLHttpRequest()
使用 HTTP GET 方法调用外部 API 开始文档。但是,如果没有 dynamic
机制,我无法想出任何使用它的方法。
fun main(args: Array<String>) {
val url = "https://jsonplaceholder.typicode.com/todos/1"
var xhttp: dynamic = XMLHttpRequest()
xhttp.open("GET", url, true)
xhttp.onreadystatechange = fun() {
if (xhttp.readyState == 4) {
println(xhttp.responseJson)
}
}
xhttp.send()
}
当然这个例子工作得很好,但我觉得 它必须是更好的方法来做到这一点而不禁用 Kotlin 的类型检查器。
- 有什么方法可以只使用 KotlinJs(没有动态)吗?
- 如果不可能,至少有人能解释一下为什么吗?
我找到了一种不使用动态回调的方法,就像在经典 .js 中一样
private fun getData(input: String, callback: (String) -> Unit) {
val url = "https://jsonplaceholder.typicode.com/todos/$input"
val xmlHttp = XMLHttpRequest()
xmlHttp.open("GET", url)
xmlHttp.onload = {
if (xmlHttp.readyState == 4.toShort() && xmlHttp.status == 200.toShort()) {
callback.invoke(xmlHttp.responseText)
}
}
xmlHttp.send()
}
而不只是称呼它:
getData("1") {
response -> println(response)
}
希望对以后的人有所帮助。