随笔分类 -  React

摘要:表单创建时要加一句话 表单模块的创建方式 阅读全文
posted @ 2019-08-07 16:40 ThisCall 阅读(3365) 评论(0) 推荐(0) 编辑
摘要:父组件不能用精准匹配,否则只组件路由无法展示 阅读全文
posted @ 2019-08-06 12:17 ThisCall 阅读(141) 评论(0) 推荐(0) 编辑
摘要:create-react-app my-admin 项目技术栈 react + redux + react-route + webpack+ axios + antd+styled-components(替代less) yarn add antd yarn add axios yarn add re 阅读全文
posted @ 2019-08-05 11:40 ThisCall 阅读(241) 评论(0) 推荐(0) 编辑
摘要:create-react-app 项目名称(项目失败,ant 的样式出不来) 项目技术栈 react + redux + react-route + webpack+ axios + less + antd 使用create-react-app 创建的项目默认不支持less,以下增加less配置的步 阅读全文
posted @ 2019-08-02 17:20 ThisCall 阅读(308) 评论(0) 推荐(0) 编辑
摘要:调用this.setState({}),如果数据改变了,rander()就行执行 阅读全文
posted @ 2019-06-28 17:42 ThisCall 阅读(289) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/379aecebb1dc(copy 阅读全文
posted @ 2019-06-28 16:49 ThisCall 阅读(377) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/132802.htm 阅读全文
posted @ 2019-06-19 17:40 ThisCall 阅读(526) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/d2615a7d725e https://blog.csdn.net/u011215669/article/details/81175291 阅读全文
posted @ 2019-06-19 14:36 ThisCall 阅读(101) 评论(0) 推荐(0) 编辑
摘要:有<Switch>标签,则其中的<Route>在路径相同的情况下,只匹配第一个,这个可以避免重复匹配; 无<Switch>标签,则其中的<Route>在路径相同的情况下全都会匹配。更严重的是,还会匹配上级路径的,如下面例子: https://www.jianshu.com/p/d5173d7b411 阅读全文
posted @ 2019-06-19 09:08 ThisCall 阅读(2514) 评论(0) 推荐(0) 编辑
摘要:<Button style={{backgroundColor:'#F0F2F5'}} onClick={()=>{window.location.href="https://baidu.com"}} className="r-button" > // 如果使用hashHistory const h 阅读全文
posted @ 2019-06-17 15:32 ThisCall 阅读(2670) 评论(0) 推荐(0) 编辑
摘要:动态路由 this.props.location.pathname(获取路由路径中的相关参数) window.location.pathname(获取路由路径中的相关参数) 阅读全文
posted @ 2019-06-17 07:21 ThisCall 阅读(1075) 评论(0) 推荐(0) 编辑
摘要:npm install --save swiper 应用模块引入import 'swiper/dist/css/swiper.min.css' import Swiper from 'swiper' 阅读全文
posted @ 2019-06-15 14:01 ThisCall 阅读(1822) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/suwyer/article/details/81481507(copy) 最好一种推荐使用 阅读全文
posted @ 2019-06-05 11:21 ThisCall 阅读(4487) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/nailc/p/8718137.html(copy) 阅读全文
posted @ 2019-06-03 17:23 ThisCall 阅读(795) 评论(0) 推荐(0) 编辑
摘要:主框架结构 home/index.js //模块主文件 创建Topic模块 阶段一 基础代码 sotre编写 编写store/index.js文件 编写store/reducer.js import { fromJS } from 'immutable'; const defaultState = 阅读全文
posted @ 2019-05-29 10:33 ThisCall 阅读(241) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/m0_37527015/article/details/84338831(copy 注:如果用 PureComponent 尽量搭配 immutable使用 否认会有坑 不用PureComponent是,shouldComponentUpdate(){}手 阅读全文
posted @ 2019-05-28 14:10 ThisCall 阅读(118) 评论(0) 推荐(0) 编辑
摘要:npm install --save style-components https://www.jianshu.com/p/27788be90605(copy) "axios": "^0.18.0", "immutable": "^3.8.2", //不可修改变量插件 "react": "^16.4 阅读全文
posted @ 2019-05-27 10:27 ThisCall 阅读(409) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/711c596571d6(copy) 阅读全文
posted @ 2019-05-23 17:57 ThisCall 阅读(109) 评论(0) 推荐(0) 编辑
摘要:修改package.json下的 改成(如下图) 在项目根目录下(和 package.json 同级)新建配置文件 config-overrides.js ,并添加如下内容,这是默认的, 如果要接入第三方要这样 const { override, fixBabelImports } = requir 阅读全文
posted @ 2019-05-17 17:20 ThisCall 阅读(900) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhan_lijian/article/details/85271906(copy) 1.肯定参考facebook关于react官网咯 快速搭建 create-react-appnpm install -g create-react-app//切记项目名称 阅读全文
posted @ 2019-05-17 15:49 ThisCall 阅读(701) 评论(0) 推荐(0) 编辑