React.js中常用的ES6写法总结(推荐)
一 模块
1 引入模块以便使用
用import实现:
import '模块文件地址' import 组件 from '模块文件地址'
2 导出模块
用export default实现:
export default class mycomponent extends component{ ... }
引用:
import mycomponent from './mycomponent';
二 组件
1 定义组件
通过定义一个继承自react.component的class来定义一个组件类:
class photo extends react.component { render() { ... } }
2 定义组件方法
直接用名字(){},很像java定义类方法的写法:
class photo extends react.component { componentwillmount() { } render() { return ( <image source={this.props.source} /> ); } }
3 定义组件的属性类型和默认属性
统一使用static成员来实现:
class video extends react.component { static defaultprops = { autoplay: false, maxloops: 10, }; // 注意这里有分号 static proptypes = { autoplay: react.proptypes.bool.isrequired, maxloops: react.proptypes.number.isrequired, posterframesrc: react.proptypes.string.isrequired, videosrc: react.proptypes.string.isrequired, }; // 注意这里有分号 render() { return ( <view /> ); } // 注意这里既没有分号也没有逗号 }
注意: 对react而言,static成员在ie10及之前版本不能被继承,而在ie11和其它浏览器上可以,有时会带来一些问题。react native则不用担心这个问题。
4 初始化state
在构造函数中初始化(这样可以根据需要做一些计算):
class video extends react.component { constructor(props){ super(props); this.state = { loopsremaining: this.props.maxloops, }; } }
5 把方法作为回调提供并使用
es5下可以这么做:
//es5 var postinfo = react.createclass({ handleoptionsbuttonclick: function(e) { // here, 'this' refers to the component instance. this.setstate({showoptionsmodal: true}); }, render: function(){ return ( <touchablehighlight onpress={this.handleoptionsbuttonclick}> <text>{this.props.label}</text> </touchablehighlight> ) }, });
在es5下,react.createclass会把所有的方法都bind一遍,这样可以提交到任意的地方作为回调函数,而this不会变化。但官方现在认为这是不标准、不易理解的。
es6下,需要通过bind来绑定this引用,或者使用箭头函数(它会绑定当前scope的this引用)来调用:
//es6 class postinfo extends react.component { handleoptionsbuttonclick(e){ this.setstate({showoptionsmodal: true}); } render(){ return ( <touchablehighlight onpress={this.handleoptionsbuttonclick.bind(this)} onpress={e=>this.handleoptionsbuttonclick(e)} > <text>{this.props.label}</text> </touchablehighlight> ) }, }
箭头函数是在这里定义了一个临时的函数,箭头函数的箭头=>之前是一个空括号、单个的参数名、或用括号括起的多个参数名,而箭头之后可以是一个表达式(作为函数的返回值),或者是用花括号括起的函数体(需要自行通过return来返回值,否则返回的是undefined)。
即:箭头函数箭头前是参数,箭头后是函数体或返回值。
注意:
不论是bind还是箭头函数,每次被执行都返回的是一个新的函数引用,因此如果你还需要函数的引用去做一些别的事情(譬如卸载监听器),那么必须自己保存这个引用:
// 错误的做法 class pausemenu extends react.component{ componentwillmount(){ appstateios.addeventlistener('change', this.onapppaused.bind(this)); } componentdidunmount(){ appstateios.removeeventlistener('change', this.onapppaused.bind(this)); } onapppaused(event){ } }
// 正确的做法 class pausemenu extends react.component{ constructor(props){ super(props); this._onapppaused = this.onapppaused.bind(this);//注意这里 } componentwillmount(){ appstateios.addeventlistener('change', this._onapppaused); //还有这里 } componentdidunmount(){ appstateios.removeeventlistener('change', this._onapppaused); } onapppaused(event){ } }
三 mixins
es5下,经常使用mixin来为类添加一些新的方法,如purerendermixin:
var purerendermixin = require('react-addons-pure-render-mixin'); react.createclass({ mixins: [purerendermixin], render: function() { return <div classname={this.props.classname}>foo</div>; } });
但react官方已经不再打算在es6里继续推行mixin,官方推荐,对于库编写者而言,应尽快放弃mixin的编写方式,推荐一种新的编码方式:
//enhance.js import { component } from "react"; export var enhance = composedcomponent => class extends component { constructor() { this.state = { data: null }; } componentdidmount() { this.setstate({ data: 'hello' }); } render() { return <composedcomponent {...this.props} data={this.state.data} />; } }; //higherordercomponent.js import { enhance } from "./enhance"; class mycomponent { render() { if (!this.data) return <div>waiting...</div>; return <div>{this.data}</div>; } } export default enhance(mycomponent); // enhanced component
用一个“增强函数”,来为某个类增加一些方法,并且返回一个新类,这无疑能实现mixin所实现的大部分需求。
四 解构与属性延展
结合使用es6+的解构和属性延展,在给子组件传递一批属性更为方便了。下面的例子把classname以外的所有属性传递给div标签:
class autoloadingpostsgrid extends react.component { render() { var { classname, ...others, // contains all properties of this.props except for classname } = this.props; return ( <div classname={classname}> <postsgrid {...others} /> <button onclick={this.handleloadmoreclick}>load more</button> </div> ); } }
下面这种写法,则是传递所有属性的同时,用新的classname值进行覆盖({…this.props}写在前边):
<div {...this.props} classname="override"> … </div>
这个例子则相反,如果属性中没有包含classname,则提供默认的值,而如果属性中已经包含了,则使用属性中的值({…this.props}写在后边)
<div classname="base" {...this.props}> … </div>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JS触摸与手势事件详解