
react
铁子哥写Java
感谢大佬们的支持。
有爱心的大佬请投币。
感谢。
展开
-
React中组件通信
方式一:通过props传递方式二:使用消息订阅(subscribe)-发布(publish)机制。工具库:PubSubJs下载: npm install pubsub-js --save原创 2019-04-03 10:25:44 · 120 阅读 · 0 评论 -
React router 中exact
exact表示绝对匹配/index,如果不注明exact,则/index还会匹配/index/new等等<li><NavLink exact to="/index" activeStyle={{ color: '#4dc060' }}>首页列表项目 </NavLink></li><li><NavLink to="/index/n...原创 2019-04-06 13:42:48 · 2222 阅读 · 0 评论 -
react 在安装 npm install babel-plugin-transform-decorators-legacy -D 状态管理装饰器的时候报错
The ‘decorators’ plugin requires a ‘decoratorsBeforeExport’ option, whose value must be a boolean. If you are migrating from Babylon/Babel 6 or want to use the olddecorators proposal, you should use ...原创 2019-04-07 21:57:59 · 3321 阅读 · 0 评论 -
react 组件
状态组件class 状态组件 extends React.Component { constructor() { super(); this.state = store.getState() } render() { return <div>状态组件</div> }}无状态组件func...原创 2019-04-09 15:36:43 · 102 阅读 · 0 评论 -
react 中 iconfont 简单使用
项目文件夹下新建iconfont 文件夹目录下载的iconfont解压到 项目 iconfont文件夹目录下面index.html 中引入 css文件<link rel="stylesheet" href="./iconfont/iconfont.css">代码中如下使用:<span className="icon iconfont">&...原创 2019-04-20 00:41:50 · 1227 阅读 · 1 评论 -
react-redux + antd 结合使用 Form
第一步: 导入相应的依赖import {connect} from 'react-redux';import {Button, Form, Input, Table, Select} from 'antd';第二部: 编写组件class Manage extends Component {}第三部:结合所有的内容export default connect(mapStateToP...原创 2019-06-14 14:42:45 · 1213 阅读 · 0 评论