0
在我的gwt應用程序中,我需要更新JavaScriptObject中某些字段的值。但似乎我的以下方法不起作用。如何更新JavaScriptObject中的值?
public class ViewModel extends JavaScriptObject
{
protected ViewModel() { }
public native final int getValue()
/*-{ return this.value; }-*/;
public native final int setValue(String val)
/*-{ this.value = val}-*/;
}
任何人都可以幫我嗎?
你是什麼意思與「不工作」? – 2014-08-28 12:22:17