ajax直接向后台传递json list结构的数据
2021-05-02 05:28
标签:list gif 后台 传递 type post 失败 lis context 传递数据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 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 });
文章标题:ajax直接向后台传递json list结构的数据
文章链接:http://soscw.com/index.php/essay/81194.html