欢迎来到天天文库
浏览记录
ID:20069042
大小:65.27 KB
页数:4页
时间:2018-10-09
《jquery异步请求action返回json》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Jquery异步请求Action返回JSON最近在自己写分布式注册中心的Web管理界面,需要点击左边树节点时,请求后台Action查询该节点的详细数据,然后异步刷新右边的节点信息区域。异步刷新用了Jquery对Ajax的封装:1.function zTreeOnClick(event, treeId, treeNode) { 2. $.ajax({ 3. type: "POST", 4. url: "Config.action", 5. data: "", 6. dataTy
2、pe: "json", 7. success: function(data) { 8. alert(eval("("+data.result+")").word); 9. //$("#configInfo").load("nodeInfo.jsp"); 10. //$("div .configInfo").html(responseText); 11. }, 12. error: funct
3、ion() { 13. $("#configInfo").load("error.jsp"); 14. } 15. }); 16. }; Action写成这样:1.@SuppressWarnings("serial") 2.public class ConfigManageAction extends ActionSupport 3.{ 4. private String result; 5. 6. @Override 7. public
4、String execute() throws Exception 8. { 9. Map map = new HashMap(); 10. map.put("word", "word_A"); 11. map.put("wordcount",33); 12. JSONObject json = JSONObject.fromObject(map); 13. this.result = json.toString();//给res
5、ult赋值,传递给页面 14. return SUCCESS; 15. } 16. 17. 18. public String getResult() { 19. return result; good,noloosening.6.5.2DCSsidewiringtocompletetheenclosureandtheothersideafterthewiringiscompleted,DCSwithintheenclosurewhenthepowermoduleshouldbeloosenedorthepowergoesout.
6、6.6lowvoltagecableterminalmaking6.6.1first1. } 2. 3. public void setResult(String result) { 4. this.result = result; 5. } 6.} struts.xml配置:1. 2.
7、3//EN" 4. "http://struts.apache.org/dtds/struts-2.3.dtd"> 5. 6. 7. 8. 9. 10. 11
此文档下载收益归作者所有