封装自己的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);
    }
  })

 

posted @ 2022-05-04 08:54  奥摩前端  阅读(17)  评论(0编辑  收藏  举报