如何在GWT中将Java中的匿名JavaScript对象传递给JavaScript?

时间:2009-09-21 23:31:16

标签: java javascript gwt jsni

我正在围绕JavaScript库创建一个GWT包装器。其中一个JavaScript函数将匿名对象作为其参数,例如:

obj.buildTabs({ hide: true, placeholder: 'placeholder' });

在Java方面,我如何创建这种类型的JavaScript对象并将其传递给我的本机实现?

目前,在Java方面,我有:

public void buildTabs(TabConfiguration config) {
   // ?
}

private native void buildTabs(?) /*-{
        $wnd.NAMESPACE.lib.buildTabs(?);
}-*/;

任何指示赞赏,谢谢。

1 个答案:

答案 0 :(得分:2)

如果您确切知道应该使用哪些参数,您可以执行以下操作(删除:)之后的其他新行

private native void buildTabs(TabConfiguration config) /*-{
        $wnd.NAMESPACE.lib.buildTabs({hide: 
                config.@com.yournamehere.TabConfiguration::
                getHide()(), 
                placeholder: 
                config.@com.yournamehere.TabConfiguration::
                getPlaceholder()()});
}-*/;

来自GWT documentation的小剪辑:

public native void bar(JSNIExample x, String s) /*-{
    // Call instance method instanceFoo() on this
    this.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call instance method instanceFoo() on x
    x.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call static method staticFoo()
    @com.google.gwt.examples.JSNIExample::staticFoo(Ljava/lang/String;)(s);

    // Read instance field on this
    var val = this.@com.google.gwt.examples.JSNIExample::myInstanceField;

    // Write instance field on x
    x.@com.google.gwt.examples.JSNIExample::myInstanceField = val + " and stuff";

    // Read static field (no qualifier)
    @com.google.gwt.examples.JSNIExample::myStaticField = val + " and stuff";
  }-*/;