前端
Meursault153
杭州电子科技大学计算机专业硕士在读
展开
-
react-router-dom 废弃了V5中的Redirect
React-router-dom 废弃了V5中的Redirect:V5的Redirect已经废弃了://v5<Redirect to="/"/>//v6<Route path="*" element={<Navigate to="/" />}/>原创 2022-01-08 16:43:04 · 1436 阅读 · 0 评论 -
react-router-dom <NavLink> v6用法
react-router 的<NavLink>组件:A <NavLink> is a special kind of that knows whether or not it is “active”.在V6 版本中activeClassName 和activeStyle 已经从NavLinkProps中移除,可以直接在<NavLink>的className和style中使用一个函数来使用active。className的用法:V5:<NavLink原创 2022-01-08 14:45:11 · 1993 阅读 · 1 评论 -
MongoDB 配置过程中出现的错误
Error parsing YAML config file: yaml-cpp: error at line 32, column 1: end of map not foundmongodb 3.0之后配置文件采用YAML格式,冒号“:”之后有值的话,需要紧跟一个空格问题描述:在使用MongoDB配置文件启动过程中,出现Error parsing YAML config file: yaml-cpp: error at line 29, column 1: end of map not fo原创 2022-01-07 10:39:19 · 1956 阅读 · 0 评论 -
React使用 http-proxy-middleware 解决多跨域问题 crbug/1173575, non-JS module files deprecated报错
浏览器出现报错:crbug/1173575, non-JS module files deprecatedReact项目采用setupProxy.js实现跨域,浏览器出现crbug/1173575, non-JS module files deprecated报错一、问题描述二、解决方法React项目采用setupProxy.js实现跨域,浏览器出现crbug/1173575, non-JS module files deprecated报错一、问题描述最近学习react,教程中讲解使用setupPr原创 2022-01-06 20:50:40 · 1999 阅读 · 4 评论