任何人都可以請幫我理解我應該如何訪問js中的json數據。 JSP-struts代碼訪問。我正在使用struts2,json,dojo。但是讓問題訪問數據。如何在dojo中使用json數據
var chartData = dojo.xhrGet({
url : "getJSONResult",
handleAs : "json",
preventCache : false,
load : function(data) {
//how to process
}
});
我在struts.xml
<package name="json" namespace="/" extends="json-default">
<action name="getJSONResult" method="execute"
class="uk.co.bandc.businessmonitor.web.controller.ShowTransactionAction">
<result type="json" />
</action>
</package>
我的動作類
package uk.co.bandc.businessmonitor.web.controller;
import com.opensymphony.xwork2.ActionSupport;
public class ShowTransactionAction extends ActionSupport {
/**
*
*/
private static final long serialVersionUID = 1L;
int[] numberarray1 = { 10000, 9200, 11811, 12000, 7662, 13887, 14200, 12222, 12000,
10009, 11288, 12099 };
public String execute() {
return SUCCESS;
} // End execute()
public int[] getNumberarray1() {
return numberarray1;
}
public void setNumberarray1(int[] numberarray1) {
this.numberarray1 = numberarray1;
}
} // End class
請修復代碼格式,謝謝。 – bernie 2012-03-27 16:39:01
您遇到的問題是什麼?你的AJAX回調函數中的數據不包含JSON嗎?如果是這樣,首先要測試的是,當您使用鍵入瀏覽器位置的URL訪問您的操作時,是否將JSON數據返回到瀏覽器中? – 2012-03-27 16:59:47
是的,如果我訪問http://127.0.0.1:8080/bizmon-web-user/getJSONResult我得到的結果{「numberarray1」:[10000,9200,11811,12000,7662,13887,14200,12222,12000, 10009,11288,12099]}。我想使用數組中的值作爲圖表的輸入。但不知道該怎麼做。 – JavaOyeOye 2012-03-27 17:07:13