07 2021 档案

摘要: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 前端乔 阅读(372) 评论(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 前端乔 阅读(101) 评论(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 前端乔 阅读(155) 评论(0) 推荐(0) 编辑