springmvc通過ajax異步請求返回json格式數據


jsp

首先創建index.jsp頁面

<script type="text/javascript">
    $(function () {
         $("#username").click(function () {
            $.ajax({
                url: "list",//請求地址
                type: "POST",
                dataType: "json",
                success: function(data) {//data是默認的,接收前台返回的數據 //alert("success");    
                    $.each(data, function(index,element) {//循環
                        $("#tr").append("<th>"+element.userid+"</th>");
                        $("#tr").append("<th>"+element.username+"</th>");
                        $("#tr").append("<th>"+element.password+"</th>");  
              // alert(data[0].areaName);////alert(data.row[0].areaName);
 
                  
                    })
                }
            });
        });
</script>
</head>
<body>
    <table align="left" border="1" cellpadding="10" cellspacing="0" id="form">
        <tr>
            <th>id</th>
            <th>用戶名</th>
            <th>密碼</th>
        </tr>
        <tr id="tr">

  </tr>
    </table>
</body>

 

controller

上面index.jsp發送list請求,接下來是處理請求的controller

@Controller
public class UserController {
    private static final String NONE = null;
    //注入ProductService
    @Autowired
    private UserMapper userMapper;
    
    /**
     * 查詢所有用戶
     * @return
     */
    @RequestMapping("/list")
    @ResponseBody//返回json格式的數據 public List<User> List(){
        List<User> list = userMapper.list();    
        return  list;
    }

}

 

Mapper.xml

<mapper namespace="com.ssm.mapper.UserMapper">
    <!-- 查詢所有用戶-->
    <select id="list" resultType="com.ssm.entity.User">
        select * from user
    </select>

</mapper>

User

public class User {
    private Integer userid;
    private String username;
    private String password;
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM