摘要:
BasicLayout是我的父组件,menu.js 配置了所有的子组件路由 如下 父组件路由配置 1 export default [ 2 { 3 path: '/nomatch/:type', 4 component: NoMatch, 5 }, 6 { 7 path: '', 8 compone 阅读全文
摘要:
https://stackoverflow.com/questions/63124161/attempted-import-error-switch-is-not-exported-from-react-router-dom Switch 由 Routes 代替 阅读全文
摘要:
https://stackoverflow.com/questions/63690695/react-redirect-is-not-exported-from-react-router-dom/66985282 react-router-dom 6版本移除了 Redirect,用 Navigati 阅读全文
摘要:
https://stackoverflow.com/questions/64936044/fix-the-upstream-dependency-conflict-installing-npm-packages 阅读全文
摘要:
error /Users/admin/Desktop/workspace/xxxxx/xx/xxxx/task-platform1/node_modules/fibers: Command failed.Exit code: 127Command: node build.js || nodejs b 阅读全文
摘要:
转时间格式 moment().format("YYYY-MM-DD") // 2020-01-26 再转标准时间 new Date('2021-01-26') // Fri Jun 05 2020 09:17:00 GMT+0800 (中国标准时间) 阅读全文
摘要:
git rebase 误操作导致文件丢失撤销并恢复文件 第一步 执行 git reflog查看本地操作记录 找到本次rebase之前的操作id 例如:89356d0 第二步 执行恢复命令 git reset --hard 89356d0 出现提示则输入y确认 阅读全文
摘要:
1.indexOf() -> ES5:返回索引,大于0则存在,-1不存在 const array = ['apple', 'banance', 'orange'] array.indexOf('apple') // 0 存在 array.indexOf('strawBerry') // -1不存在 阅读全文
摘要:
本地修改了文件名大小写后,发现并没有更新到git上,git上依旧是之前的小写。原因是git 默认不区分大小写。 解决方法:在当前项目目录下运行:git config core.ignorecase false 关闭默认。 修改完成后,当你修改文件名大小写时,Git 就会提示有提交信息了。 提交上去之 阅读全文
摘要:
类似下面这种功能: 点击添加表增加一行,删除表删除一行, 思路:将这个表单抽成一个单独的组件,维护一个时间戳数组,这个数组的作用就是通过map循环来生成动态表单,每次点击添加就在数组里添加一个时间戳。最终遍历有几个item就渲染几个表单。 实现: dynamic.js 动态表单 子组件 import 阅读全文