色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術(shù)文章
文章詳情頁

利用promise及參數(shù)解構(gòu)封裝ajax請求的方法

瀏覽:252日期:2022-06-11 15:39:48
目錄
  • 1.前端代碼
  • 2.后端代碼
  • 3.注:

1.前端代碼

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script> /**  * type: get/post  * url: http://localhost:3000 http://localhost:3000/details http://localhost:3000/users  * data: lid=5 / uname=lili&upwd=123456  * dataType: "" / "json", 如果服務(wù)端返回的是json格式字符串,就通過dataType通知ajax函數(shù)自動轉(zhuǎn)換為對象  * **/ ajax({  type: "get",  url: "http://localhost:3000",  dataType: "json" }) // data 不寫在解構(gòu)時值默認(rèn)為 data: undefined ajax({  type: "get",  url: "http://localhost:3000/details",  data: "lid=0",  dataType: "json" }) ajax({  type: "post",   url: "http://localhost:3000/users",   data: "uname=lili&upwd=123456", }).then(function(res){  alert(res) }) // dataType 不寫在解構(gòu)時值默認(rèn)為 dataType: undefined function ajax({type, url,data, dataType}){  return new Promise(function(open){  var xhr = new XMLHttpRequest()  xhr.onreadystatechange = function(){   if(xhr.readyState === 4 && xhr.status === 200){   if(dataType === "json"){    var res = JSON.parse(xhr.responseText)   }else{    var res = xhr.responseText   }   console.log(res)   open(res)   }  }  if(type === "get" && data !== undefined){   url += `?${data}`  }  xhr.open(type, url, true)  xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded")  if(type === "get"){   xhr.send()  }else{   xhr.send(data)  }  }) } </script></body></html>

另:ajax實際代碼實現(xiàn)如下

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script> var xhr = new XMLHttpRequest() xhr.onreadystatechange = function(){  if(xhr.readyState === 4 && xhr.status === 200){  console.log(xhr.responseText)  } } xhr.open("get", "http://localhost:3000", true) xhr.send() </script></body></html>

2.后端代碼

1) 創(chuàng)建一個后端項目

2) 在routes下創(chuàng)建index.js,users.js,代碼如下

// index.jsvar express = require("express");var router = express.Router();/* GET home page. */var products = [ { lid:1, pname:"筆記本", price:3400 }, { lid:2, pname:"手機", price:5400 }, { lid:3, pname:"iPad", price:6400 }]router.get("/", function(req, res, next) { res.send(products)});router.get("/details", function(req, res, next){ var lid = req.query.lid res.send(products[lid])})module.exports = router;
// user.jsvar express = require("express");var router = express.Router();/* GET users listing. */router.post("/", function(req, res, next) { var uname = req.body.uname var upwd = req.body.upwd if(uname === "lili" && upwd === "123456"){ res.send("登陸成功") }else{ res.send({  code: 0,  message: "用戶名或密碼錯誤" }) }});module.exports = router;

3.注:

為避免跨域,可將前端代碼和后端同時放在一個項目內(nèi),使用同一地址,再發(fā)送請求調(diào)取接口

到此這篇關(guān)于利用promise及參數(shù)解構(gòu)封裝ajax請求的文章就介紹到這了,更多相關(guān)promise封裝ajax請求內(nèi)容請搜索以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持!

標(biāo)簽: Ajax
主站蜘蛛池模板: 手机看片1024久久精品你懂的 | 欧美一级毛片免费播放器 | 久久99热久久精品91 | 亚洲美女在线观看播放 | 成人免费午夜视频 | 在线观看亚洲人成网站 | 青青爽国产手机在线观看免费 | 成人午夜天| 欧美一级淫片免费播放口 | 日本成人在线免费观看 | 一级特黄色毛片免费看 | 免费国产一级 | 欧美成人精品一区二区 | 免费亚洲成人 | 国产成人啪一区二区 | 国产三级在线观看视频 | 亚洲欧美另类专区 | 爱久久精品国产 | 久草在线免费资源站 | 日日摸夜夜搂人人要 | 久艹在线观看视频 | 成人三级做爰在线观看男女 | 成人黄色在线观看 | 碰碰碰精品视频在线观看 | 国产精品国产三级国产an | 久久精品成人欧美大片免费 | 亚洲一区二区三区免费观看 | 91精品视频免费 | 日韩一级生活片 | 亚洲男人第一天堂 | 亚洲视频在线免费观看 | 国产人成免费视频 | 免费特黄一级欧美大片在线看 | 色播亚洲 | 玖草视频在线 | 可以看毛片的网址 | 视频二区国产 | 亚洲国产日韩欧美 | 黄色a一片 | 久久99视频| 中国国语毛片免费观看视频 |