在Javascript中,我可以写:
var circles = document.all.tags("circle");
并在圈子变量中我将有一个圆圈标签列表。
我怎样才能在GWT中这样做? 我写道:
public final native void getPoints() /*-{
this.points = $doc.all.tags("circle");
}-*/;
public final native String toJSON() /*-{
return $wnd.JSON.stringify(this);
}-*/;
但是当我调用toJSON
方法时,我有异常。