多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
webstrom有个模板,只要将这个模板加入,那么下次新建react文件的时候,可以直接生成react文件。 ~~~ /** * Created by ${USER} on ${DATE}. * https://www.jetbrains.com/help/webstorm/file-template-variables.html 动画callback只支持1.x版本的TransitionGroup */ import React,{Component} from 'react'; //import ReactDOM from 'react-dom'; //import {TweenMax} from "gsap"; //import PropTypes from 'prop-types'; class ${NAME} extends React.Component { static defaultProps = { ...Component.defaultProps } static propTypes = {} constructor(props){ super(props) this.state = {} this.dom=React.createRef() //React.createRef();current //事件绑定在es6中用于自定义事件props事件不适用 //this.handleClick = this.handleClick.bind(this); } //组件将要装载 //componentWillMount(){} //组件加载完毕 componentDidMount(){ //this.dom.root=ReactDOM.findDOMNode(this); } //组件将接收道具 //componentWillReceiveProps(nextProps){} //shouldComponentUpdate(nextProps, nextState) {} //组件将更新 //componentWillUpdate(nextProps, nextState){} //组件更新完毕 //componentDidUpdate(nextProps, nextState){} //组件将要卸载 //componentWillUnmount(){} /*动画*/ //componentWillAppear(callback){} //componentDidAppear(){} //componentWillEnter(callback){} //componentDidEnter(){} //componentWillLeave(callback){} //componentDidLeave(){} render() { return ( <div ref={this.dom}></div> ); } } export default ${NAME}; ~~~