1 Star 0 Fork 1

xpzll/hradmin90

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
演示报错.html 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
xpzll 提交于 2022-10-07 15:09 . 递归转树
<!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>
<button id="btn1">发请求</button>
<script src="./node_modules/axios/dist/axios.js"></script>
<script>
let obj = {
name: 'jack',
age: 16
}
let list = []
list.push(obj) // 下标0就是obj
obj.name = 'rose'
obj.sex = ''
console.log(obj.name) // rose
console.log(list[0].name) // rose
console.log(list[0].sex) // 男
// // 响应拦截器
// axios.interceptors.response.use(
// response => {
// return response
// },
// err => {
// // 要抛出错误才会进到catch里
// // return Promise.reject(err)
// // 不抛错误不会进到catch里的
// return 'hello'
// }
// )
// document.querySelector('#btn1').onclick = function () {
// axios({
// url: 'https://www.escook.cn/api/cart43434'
// })
// .then(res => {
// console.log(res)
// })
// .catch(err => {
// console.log('错误了---catch')
// })
// }
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xpzll/hradmin90.git
git@gitee.com:xpzll/hradmin90.git
xpzll
hradmin90
hradmin90
master

搜索帮助