封装自己的Ajax函数
作者:互联网
itheima()函数是我们自定义的Ajax函数、它接收一个配置对象作为参数、配置对象中可以配置如下属性:
method 请求的类型
url 请求的URL地址
data 请求携带的数据
success 请求成功之后的回调函数
发送GET
itheima({ method: 'GET', url: 'http://www.liulongbin.top:3006/api/getbooks', data: { id: 1 }, success: function (res) { console.log(res); } })
发送POST
itheima({ method: 'post', url: 'http://www.liulongbin.top:3006/api/addbook', data: { bookname: '水浒传', author: '施耐庵', publisher: '北京图书出版社' }, success: function (res) { console.log(res); } })
标签:封装,函数,success,url,res,Ajax,data,method,itheima 来源: https://www.cnblogs.com/dhw303/p/16220345.html