4

例如,我们有这样的结构:

data class Item(
        val city: String,
        val name: String
)

val structure = mapOf("items" to listOf(
                Item("NY", "Bill"),
                Item("Test", "Test2"))

)

我想在 Javascript 中获取这个对象:

var structure = {
  "items": [
    {
      "city": "NY",
      "name": "Bill"
    },
    {
      "city": "Test",
      "name": "Test2"
    }
  ]
}

我们如何map从 Kotlin转换为dynamicJavascript 中具有这种结构的类型?

我发现只有这种明确的方式:

fun Map<String, Any>.toJs(): dynamic {
    val result: dynamic = object {}

    for ((key, value) in this) {
        when (value) {
            is String -> result[key] = value
            is List<*> -> result[key] = (value as List<Any>).toJs()
            else -> throw RuntimeException("value has invalid type")
        }
    }

    return result
}

fun List<Any>.toJs(): dynamic {
    val result: dynamic = js("[]")

    for (value in this) {
        when (value) {
            is String -> result.push(value)
            is Item -> result.push(value.toJs())
            else -> throw RuntimeException("value has invalid type")
        }
    }

    return result
}

fun Item.toJs(): dynamic {
    val result: dynamic = object {}

    result["city"] = this.city
    result["name"] = this.name

    return result
}

我知道使用序列化/反序列化也可以做到这一点,但我认为它会更慢并且有一些开销。

有人知道将 Kotlinobject转换为纯 Javascript objectdynamicKotlin 类型)的简单方法吗?

4

1 回答 1

-1

我可能无法真正理解您的问题,所以如果这没有帮助,请见谅。就个人而言,我是使用 Klaxon 的粉丝: https ://github.com/cbeust/klaxon

您可以编写自己的反射实用程序来迭代数据类中的所有属性并将它们转换为 JSON。

于 2017-12-21T18:35:03.720 回答