摘要: 代码如下 wx.login({ success(res) { console.log('login', res) // 获取openid需要先拿到code wx.request({ url: `https://api.weixin.qq.com/sns/jscode2session?appid=${ 阅读全文
posted @ 2023-01-31 10:25 hwinter_c 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1、安装 2、自定义配置 ctrl+, 打开vscode设置,打开json文件 按需配置 "todo-tree.general.tags": [ "BUG", "FIX", "TODO", ], "todo-tree.highlights.customHighlight": { "BUG": { " 阅读全文
posted @ 2022-11-01 11:06 hwinter_c 阅读(610) 评论(0) 推荐(0) 编辑
摘要: import axios from 'axios'; const service = axios.create({ baseURL: 'http:// test.com/api/', headers: { 'X-Requested-With': 'XMLHttpRequest' }, withCre 阅读全文
posted @ 2022-10-26 11:19 hwinter_c 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 总结:前端常用的四种存储方式有cookie、localStorage、sessionStorage、indexedDB 容量 生命周期 通信 cookie 4kb 可以设置 每次发送请求都会携带在header中 localStorage 5M 永久(需要手动清除) 不参与 sessionStorag 阅读全文
posted @ 2022-10-24 15:21 hwinter_c 阅读(1520) 评论(0) 推荐(0) 编辑
摘要: 在使用uni-app生成页面时,会发现默认生成的页面是带了导航栏 如果我们想隐藏这个导航栏,可以用如下方式: 1.如果所有页面都不需要这个导航栏了,可以在App.vue的公共样式代码中添加 /* #ifdef H5 */ uni-page-head { display: none; } /* #en 阅读全文
posted @ 2021-08-12 17:06 hwinter_c 阅读(15332) 评论(0) 推荐(1) 编辑
摘要: 提交代码的时候碰到一个错误:Delete `␍`eslint(prettier/prettier) 解决方案:(我只使用了1、2两种解决方案,后面的是网上找的) 1.手动将CRLF换成LF 但是这种方法有点累,要一个一个文件去改,而且新建的文件还是默认为CRLF 2.VS code编辑器设置默认换行 阅读全文
posted @ 2021-08-06 17:35 hwinter_c 阅读(1179) 评论(0) 推荐(0) 编辑
摘要: 记录整理一下git的基本用法方便自己日后查看 1.git命令 workspace:工作区 staging area:暂存区/缓存区 local repository:版本库或本地仓库 remote repository:远程仓库 命令 说明 git init 初始化仓库 git clone 拷贝一份 阅读全文
posted @ 2021-08-06 15:43 hwinter_c 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 先使用npm安装cli $ npm install -g @vue/cli 创建项目 vue create antd-demo 选择预设 ? Please pick a preset: (Use arrow keys) > preset01 ([Vue 3] babel, router, vuex, 阅读全文
posted @ 2021-08-06 14:26 hwinter_c 阅读(720) 评论(0) 推荐(0) 编辑
摘要: vue-router的model有两种模式:hash模式和history模式,这两种模式最直观的区别就是在url中 hash 带了一个很丑的 # 而history是没有#的 mode:"hash"; mode:"history"; hash模式和history模式的不同 对于vue这类渐进式前端开发 阅读全文
posted @ 2021-08-05 17:37 hwinter_c 阅读(213) 评论(0) 推荐(0) 编辑
摘要: null和" "空字符串的区别” 1.null表示什么都没有;而" "代表一个长度为0的字符串 2.null没有分配空间,而" "分配了内存空间 var str1="" var str2=null console.log(typeof(str1))//string console.log(typeo 阅读全文
posted @ 2021-08-04 15:49 hwinter_c 阅读(855) 评论(0) 推荐(0) 编辑