npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g yarn
yarn config set registry https://registry.NPM.Taobao.org
npm i create-react-app -g
# create-react-app 项目名称
create-react-app react_staging
yarn start
# 项目地址
http://localhost:3000/
依照于上面的React脚手架开发
https://gitee.com/flower-dance-mrz/react_todos
将组件拆分为上中下
将中间的组件的每一行又拆分为一个组件
只是为了演示效果, 具体开发自行评估
数据存放在同一父级中, 并且在父级中提供操作方法
通过Props传递
通过Props传递函数, 然后在子组件中回调父组件中的函数, 实现
defaultChecked只有在第一次初始化的时候, 才会渲染, 只执行一次, 后续数据改变, 不会触发重新渲染
checked每次都会渲染, 但是如果使用checked, 必须实现onChange函数, 处理状态改变, 不然就会无法取消选中,或者选中
添加nanoid依赖库
yarn add nanoid
使用
导入后以函数的方式调用
脚手架不会自动依赖这个库,需要手动依赖, 使用方式和之前一样, 我就只写添加依赖库了
yarn add prop-types