0

ソフトウェアが現在、返された応答を内部的にJSONフォーマットされた文字列に変換しているのに対し、私はレガシー状況を抱えています。読み取り専用の目的でフォーマットさDataSourceれた文字列を操作することは可能ですか? JSONは、DataSourceを設定するために使用されListGridます。データ URL をメモリ内の文字列に設定するにはどうすればよいですか? DataSourceusingに手動でデータを追加した方がよいでしょうaddData()か?

4

1 に答える 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 に答える