React 项目初始化

前端之家收集整理的这篇文章主要介绍了React 项目初始化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.安装构建工具

npm install -g create-react-app

2.构建项目

create-react-app ProjectName

3.安装redux

npm install redux --save
npm run eject 弹出配置文件自定义配置webpack

4.安装异步处理 redux-thunk
npm install redux-thunk --save
使用applyMiddleware开启 thunk中间件

5.安装连接 react-redux
npm install react-redux --save
React-redux 提供 Provider和connect 两个接口来连接
Provider组件在应用最外层,传入store即可,只用一次
Connect负责从外部获取组件所需的参数

6.安装装饰器
npm install babel-plugin-transform-decorators-legacy --save-dev
package.json 的 babel 中加入

"plugins": [  "transform-decorators-legacy" ]

connect的使用变得简洁

@connect(
    (state) => {{num: state}},// 属性
    { addGun,removeGun,addGunAsync }            // 方法
)

7.React-Router 4
npm install react-router-dom --save

原文链接:https://www.f2er.com/react/301548.html

猜你在找的React相关文章