加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
封装ajax-get请求.html 2.73 KB
一键复制 编辑 原始数据 按行查看 历史
zhuzhongyu 提交于 2021-12-15 12:16 . 我的项目
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- <script>
function ajax(opa) {
let { type, url, success } = opa
let xhr = new XMLHttpRequest()
xhr.open(type, url)
xhr.onload = function () {
let res = JSON.parse(xhr.responseText)
success(res)
}
xhr.send()
}
let option = {
url: 'http://127.0.0.1:3001/getHeroList',
type: 'get',
success: function (arr) {
console.log(arr);
}
}
ajax(option)
</script> -->
<!-- <script>
function ajax(opa) {
let { type, url, success, data = {} } = opa
let xhr = new XMLHttpRequest()
let usp = new URLSearchParams(data)
let query = '?' + usp.toString()
xhr.open(type, url + query)
xhr.onload = function () {
let res = JSON.parse(xhr.responseText)
success(res)
}
xhr.send()
}
let option = {
url: 'http://127.0.0.1:3001/getHeroList',
type: 'get',
data: { heroName: '黄棵' },
success: function (arr) {
console.log(arr);
}
}
ajax(option)
</script> -->
<script>
function ajax(opa) {
let { type, url, success, data = {} } = opa
let xhr = new XMLHttpRequest()
let ooo = new URLSearchParams(data)
let query = ooo.toString()
xhr.onload = function () {
let are = JSON.parse(xhr.responseText)
success(are)
}
if (type === 'get') {
xhr.open(type, url + '?' + query)
xhr.send()
} else {
xhr.open(type, url)
xhr.send(query)
}
}
//get请求
let option = {
url: 'http://127.0.0.1:3001/getHeroList',
type: 'get',
data: { heroName: '何拾兴' },
success: function (arr) {
console.log(arr);
}
}
//post请求
// let option = {
// url: 'http://127.0.0.1:3001/addHero',
// type: 'post',
// data: {
// name: '黄棵', gender: '女', img: '1212121212121'
// },
// success: function (arr) {
// console.log(arr);
// }
// }
ajax(option)
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化