我有一个遗留情况,而软件当前将返回的响应转换为内部JSON
格式化的字符串。是否可以出于只读目的DataSource
对格式化的字符串进行操作?JSON
将DataSource
用于填充ListGrid
. 如何将数据 URL 设置为内存中的字符串?手动将数据添加到DataSource
using会更好addData()
吗?
user195488
问问题
165 次
1 回答
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;
}-*/;
}
于 2013-03-21T11:43:16.023 回答