使用 create-react-app 快速构建 React 开发环境
create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。
create-react-app 自动创建的项目是基于 Webpack + ES6 。
执行以下命令创建项目:
使用 create-react-app 快速构建 React 开发环境
执行以下命令创建项目:
$ cnpm install -g create-react-app $ create-react-app my-app $ cd my-app/ $ npm start
react项目部署到tomcat
https://segmentfault.com/a/1190000010471005
npm指令
安装jquery
npm install --save jquery
webpack打包react项目
https://www.cnblogs.com/zamhown/p/6428050.html?utm_source=itdadao&utm_medium=referral
表单基础
https://www.cnblogs.com/zhuzhenwei918/p/6361398.html?utm_source=itdadao&utm_medium=referral
表单state
https://www.cnblogs.com/ghost-xyx/p/5253567.html
表单详解
https://segmentfault.com/a/1190000004696515
事件处理详解
http://blog.csdn.net/slandove/article/details/50762525
获取表单中的数据,也就是state中数据,封装成json,使用ajax发送post请求
原文链接:https://www.f2er.com/react/302287.html