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

struts2返回字符串给ajax使用

时间:2017-04-11 13:30:40      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:==   配置文件   function   需要   inpu   action   type   class   false   

给配置文件添加返回内容:

<result name="hint" type="stream">
                <param name="contentType">text/html</param>
                <param name="inputName">hint</param>
            </result>

 

在action中添加 参数:

private InputStream hint;
    public InputStream getHint() {
        return hint;
    }
    public void setHint(InputStream hint) {
        this.hint = hint;
    }

在action中添加一个方法:

  private String transcoding(String str) {
        try {
            return new String(str.getBytes("utf-8"), "iso-8859-1");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return str;
    }

 

action需要执行的方法返回内容:

if(满足条件){
 this.hint= new StringBufferInputStream (transcoding("1"));
            return   "hint";
}

 

ajax:

success: function (result) { 
                 if (result == "1") {
                   alert("成功返回action配置的内容");
                    return false;
                } 
            }

 

struts2返回字符串给ajax使用

标签:==   配置文件   function   需要   inpu   action   type   class   false   

原文地址:http://www.cnblogs.com/wdnnccey/p/6692854.html

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