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

return void ajax

时间:2017-08-21 09:37:26      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:tool   inf   .ajax   text   map   copy   utf-8   jquer   ping   

技术分享
public class UserInfo {
    private String name;
    private Integer age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}
技术分享
技术分享
@Controller
public class json {
@RequestMapping("/tojson")
    public void write(HttpServletRequest request, HttpServletResponse response) throws IOException {
    List<UserInfo> list=new ArrayList<UserInfo>();
    UserInfo u1=new UserInfo();
    u1.setName("啊啊");
    u1.setAge(22);

    UserInfo u2=new UserInfo();
    u2.setName("哈哈");
    u2.setAge(20);

    list.add(u1);
    list.add(u2);


    String re= JSON.toJSONString(list);

    response.getWriter().write(re);



    }

}
技术分享
技术分享
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-1.12.4.js"></script>
<script type="text/javascript">
    $(function () {
        $.ajax({
            url:"${pageContext.request.contextPath}/tojson",
            type:"post",
            data:{},
            success:function (data) {
                alert(data);
            }

        });
    });



</script>
<body>
<h2>流氓</h2>
</body>
</html>
技术分享

return void ajax

标签:tool   inf   .ajax   text   map   copy   utf-8   jquer   ping   

原文地址:http://www.cnblogs.com/zfx123--/p/7402440.html

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