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

ajax直接向后台传递json list结构的数据

时间:2020-01-02 09:34:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:list   gif   后台   传递   type   post   失败   lis   context   

 1 $.ajax({
 2                 url: CONTEXTPATH + ...,
 3                 data: JSON.stringify(data),
 4                 dataType: ‘json‘,
 5                 contentType: ‘application/json; charset=UTF-8‘,
 6                 type: ‘post‘
 7             }).done(function (res) {
 8                 // 成功操作14             }).fail(function () {
15                 // 失败操作
16             });

传递数据data需要使用json字符串,data中数据不能有多余的字段,否则后台接收不到数据。

contentType必须是 application/json; charset=UTF-8。

ajax直接向后台传递json list结构的数据

标签:list   gif   后台   传递   type   post   失败   lis   context   

原文地址:https://www.cnblogs.com/wpp281154/p/12131460.html

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