随笔分类 - React
摘要:一、安装 npm install -g create-react-app 二、创建react应用 create-react-app 项目名称 进入项目文件 npm start 或 yarn npm run eject 暴露webpack 安装包配置自己可以重新分配一下,其实并不影响打包,打包模块插件
阅读全文
摘要:https://www.jianshu.com/p/14bbc991a268 https://www.npmjs.com/package/react-lazyload npm install --save react-lazyload <LazyLoad overflow={true} height
阅读全文
摘要:https://blog.csdn.net/weixin_41196185/article/details/104649667
阅读全文
摘要:Invalid prop `value` of type `string` supplied to `Select`, expected `array` when `multiple` or `tags` is `true`. 这个位置默认值为数组 [ ]
阅读全文
摘要:模块化目录结构 action 属于Reduex, 是把数据从应用传到 store 的有效载荷。它是 store 数据的唯一来源。一般来说你会通过 store.dispatch() 将 action 传到 store。 Connect https://www.jianshu.com/p/ad7eddb
阅读全文
Browserslist: caniuse-lite is outdated. Please run next command `npm update caniuse-lite browserslis
摘要:依照命令行提示去更新不起作用解决:1.直接删除该项目node_modules下面的caniuse-lite和browserslist这两个文件夹2. npm i caniuse-lite browserslist
阅读全文
摘要:this.state = {foo: 2}; this.setState({foo: 123}, ()=> { console.log(foo); });
阅读全文
摘要:https://www.cnblogs.com/xiaodi-js/p/9119826.html
阅读全文
摘要:npm install ali-oss --save
阅读全文
摘要:import {Editor} from 'react-draft-wysiwyg'import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css'import draftjs from 'draftjs-to-html' yarn add reac
阅读全文
摘要:https://blog.csdn.net/zhangheli123456/article/details/85053210 可以将 PureComponent 换成React.Component 或者参考链接,深复制赋值
阅读全文
摘要:npm install react-zmage -S https://blog.csdn.net/Wcharles666/article/details/90262525 启动报错 直接执行 npm install import Zmage from 'react-zmage'
阅读全文
摘要:src/setupProxy.js 创建文件 注意api前面千万别加/,/api/****是错的,还要注意请求的接口是post还是Get
阅读全文
摘要:https://www.jianshu.com/p/8eec4986c745
阅读全文
摘要:https://blog.csdn.net/qq_36822018/article/details/83028661(先看看这个 https://blog.csdn.net/weixin_34268169/article/details/88834074(再先看看这个 https://www.jia
阅读全文
摘要:https://www.cnblogs.com/Qian123/p/5345298.html
阅读全文
摘要:rowClassName={(record, index) => { let className = 'light-row'; if (index % 2 === 1) className = 'dark-row'; return className; ...
阅读全文