- 博客(16)
- 收藏
- 关注
原创 字体放大缩小
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <meta http-equiv='X-UA-Compatible' content='ie=edge'> <title&g...
2022-05-12 11:47:28 225
原创 js消消乐小游戏
<!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"> &l...
2022-05-12 11:45:46 386
原创 生成随机数
<!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"> <titl...
2022-05-12 11:28:28 60
原创 有文件上传请求和无文件上传axios封装
// axios的封装import http from 'axios'import qs from 'querystring'// 添加请求拦截器http.interceptors.request.use(config=>{ let userInfo = JSON.parse(localStorage.getItem('userInfo')||'{}') // 添加请求头 config.headers.authorization = userInfo.token .
2021-12-30 16:24:32 286
原创 微信小程序的请求封装wx.request()
//统一的路由模块的使用和管理//引入路径模块统一封装let http from './http.js';//定义请求并暴露数据export let getbanner=()=>http({ url:"/api/xxxx"})微信请求的封装:wx.request(object)const baseUrlPath = 'http://localhost:3000';//定义url路由//微信的发送请求封装// option 要传递的数据信息,默认为对象形式f.
2021-12-30 15:19:28 450
原创 关于同步和异步的执行(宏和微的执行顺序)
<script> console.log(11111) //1 async function async1() { await async2() console.log("async1")//7 } async function async2() { await async3() console.log...
2021-11-16 10:33:30 837
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人