博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过Ajax post Json类型的数据
阅读量:6420 次
发布时间:2019-06-23

本文共 1498 字,大约阅读时间需要 4 分钟。

function postSimpleData() {        $.ajax({            type: "POST",            url: "/Service/SimpleData",            contentType: "application/json", //必须有            dataType: "json", //表示返回值类型,不必须            data: JSON.stringify({ 'foo': 'foovalue', 'bar': 'barvalue' }),  //相当于 //data: "{'str1':'foovalue', 'str2':'barvalue'}",            success: function (jsonResult) {                alert(jsonResult);            }        });    }    function postListString() {        $.ajax({            type: "POST",            url: "/Service/ListString",            contentType: "application/json",            dataType: "json",            data: JSON.stringify({ "BuIds": ["1", "2", "3"] }),            success: function (jsonResult) {                alert(jsonResult);            }        });    }    function postEmployees() {        $.ajax({            type: "POST",            url: "/Service/Employees",            contentType: "application/json",            dataType: "json",            data: JSON.stringify({                "Employees": [                                    { "firstName": "Bill", "lastName": "Gates" },                                    { "firstName": "George", "lastName": "Bush" },                                    { "firstName": "Thomas", "lastName": "Carter" }                                 ]            }),            success: function (jsonResult) {                alert(jsonResult);            }        });    }

  

转载于:https://www.cnblogs.com/hjptopshow/p/8059389.html

你可能感兴趣的文章
html的基本数据类型(数字,字符串, 列表, 字典)
查看>>
菜鸟机器学习散点总结(二)
查看>>
ant design 中的 Select 组件常规写法
查看>>
弹窗 组件 封装
查看>>
[Widget] HTML5解决跨域问题
查看>>
Uva 1451
查看>>
python基础一 ------"有序"的字典
查看>>
JS为句柄添加监听函数
查看>>
[导入]WAP编程(性能篇)
查看>>
curl 发送get post请求
查看>>
linux介绍
查看>>
JS 用sort方法排序字符串
查看>>
phpstrom调试神器
查看>>
Windows下磁盘无损重新分配
查看>>
实践:VIM深入研究(20135301 && 20135337)
查看>>
Shell 流程控制
查看>>
mongodb配置
查看>>
多客户端项目的冗余服务器
查看>>
如何把session保存在mysql中?
查看>>
error C2872: “ACCESS_MASK”: 不明确的符号
查看>>