当前位置:   article > 正文

ajax封装get、post请求_封装的get发送请求

封装的get发送请求
  1. //JS如何封装一个ajax请求
  2. //请求方式:请求地址,请求参数,请求参数的类型
  3. //请求返回的结果
  4. function ajax(options) {
  5. //创建XMLHttpRequest对象
  6. let xhr = new XMLHttpRequest();
  7. //初始化参数内容
  8. options = options || {}
  9. options.type = (options.type || 'GET').toUpperCase()
  10. options.dataType = options.dataType || 'json'
  11. const params = options.data
  12. //发送请求
  13. if (options.type === 'GET') {
  14. xhr.open('GET', options.url + "?" + getParams(params), true)
  15. xhr.send(null)
  16. } else if (options.type === 'POST') {
  17. xhr.open('POST', options.url, true)
  18. xhr.send(params)
  19. }
  20. //接收请求
  21. xhr.onreadystatechange = function () {
  22. if (xhr.readyState === 4) {
  23. if (xhr.status >= 200 & xhr.status < 300) {
  24. //responseText字符串的响应数据
  25. //responseTypeXML形式的响应数据
  26. options.success(xhr.responseText, xhr.responseXML)
  27. } else {
  28. options.fail('参数错误' + xhr.status)
  29. }
  30. }
  31. }
  32. }
  33. ajax({
  34. type: 'post',
  35. dataType: 'json',
  36. data: {
  37. limit: 10
  38. },
  39. url: 'http://localhost:3000/personalized',
  40. success: function (text, xml) {//成功的回调
  41. console.log(JSON.parse(text));
  42. },
  43. fail: function (status) {//失败的回调
  44. console.log(status);
  45. }
  46. })
  47. //对参数做处理
  48. function getParams(data) {
  49. let arr = [];
  50. // url = 'limit=10&age=19'
  51. for (let key in data) {
  52. arr.push(`${key}=${data[key]}`)
  53. }
  54. console.log(arr.join('&'));
  55. return arr.join('&')
  56. }
  57. // 转换为数组: ['limit=10', 'age=20', 'sex=12']
  58. // 数组使用join拼接& limit=10&age=20&sex=12
  59. getParams({ limit: 10, age: 20, sex: 12 })

主要需要掌握ajax的原理,封装之前考虑到我们函数需要接收的参数。

getParams是为了将我们get请求中 获取到的date数据可以解析到我们的请求地址上,封装为一个函数。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/148109
推荐阅读
相关标签
  

闽ICP备14008679号