gpt4 book ai didi

java gwt 空指针?

转载 作者:行者123 更新时间:2023-12-02 07:41:20 24 4
gpt4 key购买 nike

我有以下代码:

public class A extends Composite {
public String url;
public String result;
public A(String url, String result) {
this.url = url;
this.result = result;
}



public A someObject;
public VerticalPanel vp = new VerticalPanel();
public void init() {
someObject = new A(url, result);
someObject.setStyleName("style");
this.vp.add(someObject);
}

但是当我调用“this.vp.add(...)”时,它会说:

  (TypeError): Cannot read property '__gwt_resolve' of null

怎么会这样?

最佳答案

您的Composite小部件缺少对initWidget()的调用。如果它是一个 Widget,它可能会缺少对 setElement() 的调用。

参见https://developers.google.com/web-toolkit/doc/latest/DevGuideUiCustomWidgets

关于java gwt 空指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14276166/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com