在行動:返回JSON對象,提供空數據
//Declaration
JSONObject jObj1 = null;
public JSONObject getjObj1() {
return jObj1;
}
public void setjObj1(JSONObject jObj1) {
this.jObj1 = jObj1;
}
//In Action method
String jsong="{\"cid\":232}";
jObj1 = new JSONObject(jsong);
return Action.SUCCESS
Struts的CFG文件:
<action name="jsonAction" class="jsonAction" method="getJson">
<result type="json" name="success">
<param name="root">jObj1</param>
</result>
</action>
我得到空的結果,當我在JSP控制檯中看到
我哪裏出錯了?謝謝。
你爲什麼不使用由S2提供的JSON插件? –
[jQuery AJAX的可能的重複 - 問題返回JSON值](http://stackoverflow.com/questions/17093862/jquery-ajax-issue-returning-json-value) –