使用没有数据URL的DataSource

时间:2013-03-19 15:11:25

标签: java json gwt datasource smartgwt

我有遗留情况,而软件当前将返回的响应转换为内部JSON格式化的字符串。 DataSource是否可以对JSON格式化字符串进行操作以实现只读目的? DataSource将用于填充ListGrid。如何将数据URL设置为内存中的String?使用DataSource

手动将数据添加到addData()会不会更好?

1 个答案:

答案 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;
   }-*/;
}