Struts1.*与JQuery的json交互
这两天项目需要,Struts1.*框架使用JQuery的Json来异步查询信息来显示内容,写完本人总结下~~~
一、需要的东西
1. jquery的js文件:本人使用的是jquery-1.4.2.min.js.(可以自己去官网下载)
二、jsp页面写法
1. 首先在head中引入jquery的js文件:
<script type="text/javascript" src="${contextPath }/js/tips.js"></script>
2. 页面button的onclick事件:
<a href="#" onclick="f_getInfo('send.id=${send.id}')">预览</a>
3. 下面是js中jquery的代码:
function f_getInfo(param) { $.post("${contextPath}/send/preSendInfo.do?",param, function (data) { var obj; obj = eval(data); f_perview(obj); },"json"); } function f_perview(obj) { var MSG1 = new CLASS_MSN_MESSAGE("aa",obj.twidth,obj.theight,obj.sname,obj.sname,"用户:"+obj.username + "<br> 消息URL:" + obj.contentUrl); MSG1.rect(null,null,null,screen.height-50); MSG1.speed = obj.keepTime; MSG1.step = 8; MSG1.show(); }
说明:第一个js的方法是jquery与后台交互,function方法是返回的结果(这里只有返回成功的消息才会执行该方法),eval是json转换成对象的函数,之后是调用下面的方法传递一个参数。下面的方法就是显示内容了。显示对象的内容使用的是:***.后台bean对象的成员变量。
4. action类中的写法:
public ActionForward preSendInfo() throws IOException { send = sendService.getSendInfo(send.getId()); if(send == null) { return StrutsEnv.getActionMapping().findForward(FAILED); } String result = JsonUtil.object2json(send).toString(); HttpServletResponse response = StrutsEnv.getResponse(); response.setContentType("application/json;charset=UTF-8"); response.setCharacterEncoding("UTF-8"); PrintWriter pw = response.getWriter(); pw.write(result); pw.flush(); return null; }
说明:action类中的方法中返回值应该准换成json格式,然后使用response返回到jsp页面。
注意renturn 后面为null。
5. struts-config.xml文件的写法跟普通的写法一样,只是不用谢forward了~~~
<action attribute="send" name="send" path="/send/preSendInfo" scope="request" type="com.uucall.messagepush.struts.BeanAction"> </action>
上面就是struts1.*与jquery的ajax交互使用json的所有方法,以后方便自己忘记之后熟悉~~~
相关推荐
84483065 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
tztzyzyz 2020-07-05
delmarks 2020-06-28
89510194 2020-06-27
牵手白首 2020-06-14
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
momode 2020-09-11
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28