Struts1.*与JQuery的json交互
这两天项目需要,Struts1.*框架使用JQuery的Json来异步查询信息来显示内容,从网上看到转来的,入门知识,挺不错的哦
一、需要的东西
1.jquery的js文件:本人使用的是jquery-1.4.2.min.js.(可以自己去官网下载)
二、jsp页面写法
1.首先在head中引入jquery的js文件:
Js代码
<scripttype="text/javascript"src="${contextPath}/js/tips.js"></script>
<scripttype="text/javascript"src="${contextPath}/js/tips.js"></script>
2.页面button的onclick事件:
Html代码
<ahref="#"onclick="f_getInfo('send.id=${send.id}')">预览</a>
<ahref="#"onclick="f_getInfo('send.id=${send.id}')">预览</a>
3.下面是js中jquery的代码:
Java代码
functionf_getInfo(param){
$.post("${contextPath}/send/preSendInfo.do?",param,
function(data){
varobj;
obj=eval(data);
f_perview(obj);
},"json");
}
functionf_perview(obj){
varMSG1=newCLASS_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();
}
functionf_getInfo(param){
$.post("${contextPath}/send/preSendInfo.do?",param,
function(data){
varobj;
obj=eval(data);
f_perview(obj);
},"json");
}
functionf_perview(obj){
varMSG1=newCLASS_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类中的写法:
Java代码
publicActionForwardpreSendInfo()throwsIOException{
send=sendService.getSendInfo(send.getId());
if(send==null){
returnStrutsEnv.getActionMapping().findForward(FAILED);
}
Stringresult=JsonUtil.object2json(send).toString();
HttpServletResponseresponse=StrutsEnv.getResponse();
response.setContentType("application/json;charset=UTF-8");
response.setCharacterEncoding("UTF-8");
PrintWriterpw=response.getWriter();
pw.write(result);
pw.flush();
returnnull;
}
publicActionForwardpreSendInfo()throwsIOException{
send=sendService.getSendInfo(send.getId());
if(send==null){
returnStrutsEnv.getActionMapping().findForward(FAILED);
}
Stringresult=JsonUtil.object2json(send).toString();
HttpServletResponseresponse=StrutsEnv.getResponse();
response.setContentType("application/json;charset=UTF-8");
response.setCharacterEncoding("UTF-8");
PrintWriterpw=response.getWriter();
pw.write(result);
pw.flush();
returnnull;
}
说明:action类中的方法中返回值应该准换成json格式,然后使用response返回到jsp页面。
注意renturn后面为null。
5.struts-config.xml文件的写法跟普通的写法一样,只是不用谢forward了~~~
Java代码
<actionattribute="send"name="send"path="/send/preSendInfo"
scope="request"type="com.uucall.messagepush.struts.BeanAction">
</action>
<actionattribute="send"name="send"path="/send/preSendInfo"
scope="request"type="com.uucall.messagepush.struts.BeanAction">
</action>
上面就是struts1.*与jquery的ajax交互使用json的所有方法,以后方便自己忘记之后熟悉~~~