上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 一、前言 最近在做需求的时候,涉及到登录token,产品提出一个问题:能不能让token过期时间长一点,我频繁的要去登录。 前端:后端,你能不能把token 过期时间设置的长一点。 后端:可以,但是那样做不安全,你可以用更好的方法。 前端:什么方法? 后端:给你刷新token的接口,定时去刷新tok 阅读全文
posted @ 2021-08-03 12:26 前端乔 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1.react处理跨域,在package中配置代理,用来解决跨域的问题 "proxy": "http://www.qiaoming.online", 2.vue解决跨域,在vue项目根目录下找到vue.config.js文件(如果没有该文件则自己创建),在proxy中设置跨域 devServer: 阅读全文
posted @ 2021-07-28 10:11 前端乔 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-26 11:41 前端乔 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 一、axios简介 axios是一个基于promise的类库,可以用在浏览器和node.js中 二、axios请求拦截器、响应拦截器的基本用法 //请求拦截器 axios.interceptors.request.use( function (config) { // 在发送请求之前做些什么 ret 阅读全文
posted @ 2021-07-19 10:46 前端乔 阅读(52) 评论(0) 推荐(0) 编辑
摘要: getRequest(){ fetch("http://127.0.0.1:8888/getReq?naem=张三",{method:"get"}).then(res=>{ //fech第一个then方法里的参数并不是直接返回的数据,需要对该对象做序列化处理(json),再第一个then里才能拿到数 阅读全文
posted @ 2021-07-19 10:43 前端乔 阅读(371) 评论(0) 推荐(1) 编辑
摘要: 1.React状态管理思想,redux http://cn.redux.js.org/ 2.React ui插件AntDesign https://ant.design/index-cn 3.react项目开发必备插件 npm install react-router-dom fetch-jsonp 阅读全文
posted @ 2021-07-15 17:44 前端乔 阅读(45) 评论(0) 推荐(0) 编辑
摘要: vue3.0官网 https://vue3.chengpeiquan.com/update.html 阅读全文
posted @ 2021-07-10 10:40 前端乔 阅读(45) 评论(0) 推荐(0) 编辑
摘要: uviewui.官网: https://www.uviewui.com/components/intro.html 阅读全文
posted @ 2021-07-09 17:47 前端乔 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 一、项目中对数组的操作 1.数组去重通过Set数组去重 let arr = [4, 1, 3, 3, 2, '2']; let uniqueArr = [...new Set(arr)]; console.log(uniqueArr); // [4, 1, 3, 2, "2"] 2.数组排序 方法一 阅读全文
posted @ 2021-07-03 15:04 前端乔 阅读(154) 评论(0) 推荐(0) 编辑
摘要: https://weapp.iviewui.com/components/layout 阅读全文
posted @ 2021-06-22 17:47 前端乔 阅读(87) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页