码迷,mamicode.com
首页 > Web开发 > 详细

Struts2与jQuery.ajax()的结合

时间:2016-11-30 17:04:04      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:xtend   exec   serialize   write   post   cut   pos   pre   color   

1、客户端是通过$.ajax()方法向login.action传递数据;
2、其中action中execute()方法返回值为空,并通过【ServletActionContext.getResponse().getWriter().print(result);】 方法将数据传到jQuery中。

loginAction.java

public String execute() throws Exception {
    boolean result = false;
    if (username.equals(password)) {
        result = true;
    }
    ServletActionContext.getResponse().getWriter().print(result);
    return null;
}

login.js

$.ajax({
    type : "post",
    url : "login.action",
    data : $("#form1").serialize(),
    success : function(data, textStatus) {
        if (data == "true") {
            alert("成功");
        }
        if (data == "false") {
            alert("失败");
        }
    }
});

struts.xml

<package name="struts2" namespace="/" extends="struts-default">
    <action name="login" class="cn.hist.water.action.LoginAction"></action>
</package>

 

参考:http://blog.163.com/asd_wll/blog/static/210310402011103001241985/

Struts2与jQuery.ajax()的结合

标签:xtend   exec   serialize   write   post   cut   pos   pre   color   

原文地址:http://www.cnblogs.com/loveyunk/p/6118188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!