0

当我有 JSON 对象时:

{
    "asset": {
        "properties": [{
            "name": "xxx",
            "id": "yy"
        }]
    }
}

然后我有这样的 JsInterop 包装器:

@JsType
public class Asset {

   @JsProperty
   public native jsinterop.base.JsArrayLike<Property> getProperties();

}

和:

@JsType
public class Property {

   @JsProperty
   public native String getName();
   @JsProperty
   public native String getId();
}

当我在代码中的某个地方尝试访问数据时,当我尝试访问 Property 对象的属性时它会失败。

例如:

Asset asset = dataProvider.getAssets();
console.log(assets) //works ok: => {"properties":Array(1)}
console.log(asset.getProperties()) //works ok:  => Array(1)
console.log(asset.getProperties().getAt(0)) //works ok:  => {"name":"xxx","id":"yy"}
console.log(asset.getProperties().getAt(0).getName() //does not work:  => Uncaught exception: undefined

或者,如果我创建资产和属性类(isNative=true):

Uncaught exception: Cannot read property "company" of undefined.

我检查了,如果我在尝试获取名称或 id 时编译应用程序,代码将编译为:

castTo(asset.properties[0], 125)

或者如果(isNative=true):

castToNative(asset.properties[0], $wnd.com.company.project.Property)

首先我认为这是因为我实现了数组的包装器,但是我发现了“jsinterop.base.JsArrayLike”,所以我认为这可以解决我的问题,但错误仍然存​​在。我错过了什么吗?我真的很想使用 JsInterop 而不是 JSNI 方法和 Overlay 类型,但我无法通过这些数组。

4

1 回答 1

3

当您处理来自 JSON 的数据时,您会得到普通的 oldObjectArrayobjects。所以你需要使用

@JsType(isNative=true, namespace=JsPackage.GLOBAL, name="Object")

或者您可以改用接口,它不会进行强制转换和类型检查。

于 2018-03-06T07:18:42.593 回答