如何创建json对象并在GWT中将我的值放入其中?
import com.google.gwt.json.client.JSONObject;
...
JSONObject myJson = new JSONObject();
myJson.put("hello", "world");
因为在put方法中我收到了这个错误: 方法put(String,JSONValue)在JSONObject类型中不适用于参数(String,String)
答案 0 :(得分:0)
myJson.put("hello", new JSONString("world"));