ソフトウェアが現在、返された応答を内部的にJSON
フォーマットされた文字列に変換しているのに対し、私はレガシー状況を抱えています。読み取り専用の目的でフォーマットさDataSource
れた文字列を操作することは可能ですか? JSON
は、DataSource
を設定するために使用されListGrid
ます。データ URL をメモリ内の文字列に設定するにはどうすればよいですか? DataSource
usingに手動でデータを追加した方がよいでしょうaddData()
か?
user195488
質問する
165 次
1 に答える
0
私は、SmartGWT ユーティリティ クラスの JSON を使用して、JSON をカスタム .xml にデコードできると判断しました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 に答える