ajax提交数据后台获取不到

例如:测试,通过ajax提交JSON数据后台获取不到。

$.ajax({

       type : 'POST',

       url : 'http://localhost/zzc1684',

       data : {"id" : 1},

       contentType : 'application/json',

       success : function(result) {

               

       }

});

修改为:

$.ajax({

      type : 'POST',

      url : 'http://localhost/zzc1684',

      data : {"id" : 1},

      dataType : 'json',

      success : function(result)  {

     }

});

相关推荐