码迷,mamicode.com
首页 > 编程语言 > 详细

spring mvc 对象型参数的传递(遇到坑了)

时间:2016-11-12 17:07:06      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:技术   content   name   html   ams   ica   rip   ges   eth   

直接来个列子:

技术分享

这里设置了,contenType="application/json"

技术分享

这里post 接收的参数对象。

但是问题来了:

<html>
<head>
<title>POST</title>
</head>
<script src = "jquery.js"></script>
<script>
$(function(){

$.ajax({  
        type:‘POST‘,  
        url : ‘url‘,
        "contentType": "application/json;charset=utf-8",
        dataType : ‘json‘,  
        data:{
            "id": 0,
            "name": "",
            "page":1,
            "size":1
        },   ///
        //jsonpCallback: ‘callback‘,
        success  : function(data){
          console.log(data);
        },  
        error : function(data) {  
          //do something...
        }  
   });
})

function callback(data){
    var jsonobj = eval(‘(‘ + data + ‘)‘); 
    alert(jsonobj.name);
}
</script>
<body>

</body>
</html>

技术分享

直接400了,后来发现是参数的格式不对。

 修改完代码如下:

<html>
<head>
<title>POST</title>
</head>
<script src = "jquery.js"></script>
<script>
$(function(){
    var params= {
            "id": 0,
            "name": "",
            "page":1,
            "size":1
        };

$.ajax({  
        type:‘POST‘,  
        url : ‘url‘,
        "contentType": "application/json;charset=utf-8",
        dataType : ‘json‘,  
        data:JSON.stringify(params),   ///注意这里
        //jsonpCallback: ‘callback‘,
        success  : function(data){
          console.log(data);
        },  
        error : function(data) {  
          //do something...
        }  
   });
})

function callback(data){
    var jsonobj = eval(‘(‘ + data + ‘)‘); 
    alert(jsonobj.name);
}
</script>
<body>

</body>
</html>

 

spring mvc 对象型参数的传递(遇到坑了)

标签:技术   content   name   html   ams   ica   rip   ges   eth   

原文地址:http://www.cnblogs.com/HendSame-JMZ/p/6056830.html

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