我有遗留情况,而软件当前将返回的响应转换为内部JSON
格式化的字符串。 DataSource
是否可以对JSON
格式化字符串进行操作以实现只读目的? DataSource
将用于填充ListGrid
。如何将数据URL设置为内存中的String?使用DataSource
?
addData()
会不会更好?
答案 0 :(得分:0)
我确定我能够使用SmartGWT实用程序类JSON将我的JSON解码为自定义JavaScriptObject
。
import com.google.gwt.core.client.JavaScriptObject;
public class MyStatusResults extends JavaScriptObject
{
protected MyStatusResults()
{
// Intentionally empty
}
/**
* Returns the total number of results for this search.
*
* @return the total number of results for this search.
*/
public final native int getTotalResults() /*-{
return this.total;
}-*/;
/**
* Returns the entry results of the search.
*
* @return the entry results of the search.
*/
public final native MyStatus[] getResults() /*-{
return this.entries;
}-*/;
}