91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用ES6語法重構React

發布時間:2021-07-28 10:05:04 來源:億速云 閱讀:152 作者:小新 欄目:web開發

這篇文章主要為大家展示了“如何使用ES6語法重構React”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何使用ES6語法重構React”這篇文章吧。

使用ES6語法重構React組件

在Airbnb React/JSX Style Guide中,推薦使用ES6語法來編寫react組件。下面總結一下使用ES6 class語法創建組件和以前使用React.createClass方法來創建組件的不同。

創建組件

ES6 class創建的組件語法更加簡明,也更符合javascript。內部的方法不需要使用function關鍵字。

React.createClass

import React from 'react';

const MyComponent = React.createClass({
 render: function() {
  return (
   <div>以前的方式創建的組件</div>
  );
 }
});

export default MyComponent;

React.Component(ES6)

import React,{ Component } from 'react';

class MyComponent extends Component {
 render() {
  return (
   <div>ES6方式創建的組件</div>
  );
 }
}

export default MyComponent;

props propTypes and getDefaultProps

1.使用React.Component創建組件,需要通過在constructor中調用super()將props傳遞給React.Component。另外react 0.13之后props必須是不可變的。

2.由于是用ES6 class語法創建組件,其內部只允許定義方法,而不能定義屬性,class的屬性只能定義在class之外。所以propTypes要寫在組件外部。

3.對于之前的getDefaultProps方法,由于props不可變,所以現在被定義為一個屬性,和propTypes一樣,要定義在class外部。

React.createClass

import React from 'react';

const MyComponent = React.createClass({
 propTypes: {
  nameProp: React.PropTypes.string
 },
 getDefaultProps() {
  return {
   nameProp: ''
  };
 },
 render: function() {
  return (
   <div>以前的方式創建的組件</div>
  );
 }
});

export default MyComponent;

React.Component(ES6)

import React,{ Component } from 'react';

class MyComponent extends Component {
 constructor(props) {
  super(props);
 }
 
 render() {
  return (
   <div>ES6方式創建的組件</div>
  );
 }
}

MyComponent.propTypes = {
 nameProp: React.PropTypes.string
};
MyComponent.defaultProps = {
 nameProp: ''
};

export default MyComponent;

State

使用ES6 class語法創建組件,初始化state的工作要在constructor中完成。不需要再調用getInitialState方法。這種語法更加的符合JavaScript語言習慣。

React.createClass

import React from 'react';

const MyComponent = React.createClass({
 getInitialState: function() {
  return { data: [] };
 },
 
 render: function() {
  return (
   <div>以前的方式創建的組件</div>
  );
 }
});

export default MyComponent;

React.Component(ES6)

import React,{ Component } from 'react';

class MyComponent extends Component {
 constructor(props) {
  super(props);
  this.state = { data: [] };
 }
 
 render() {
  return (
   <div>ES6方式創建的組件</div>
  );
 }
}

export default MyComponent;

this

使用ES6 class語法創建組件, class中的方法不會自動將this綁定到實例中。必須使用 .bind(this)或者 箭頭函數 =>來進行手動綁定。

React.createClass

import React from 'react';

const MyComponent = React.createClass({
 handleClick: function() {
  console.log(this);
 },
 render: function() {
  return (
   <div onClick={this.handleClick}>以前的方式創建的組件</div>
  );
 }
});

export default MyComponent;

React.Component(ES6)

import React,{ Component } from 'react';

class MyComponent extends Component {
 handleClick() {
  console.log(this);
 }
 
 render() {
  return (
   <div onClick={this.handleClick.bind(this)}>ES6方式創建的組件</div>
  );
 }
}

export default MyComponent;

也可以將綁定方法寫到constructor中:

import React,{ Component } from 'react';

class MyComponent extends Component {
 constructor(props) {
  super(props);
  this.handleClick = this.handleClick.bind(this);
 }

 handleClick() {
  console.log(this);
 }
 
 render() {
  return (
   <div onClick={this.handleClick}>ES6方式創建的組件</div>
  );
 }
}

export default MyComponent;

或者使用箭頭函數 =>

import React,{ Component } from 'react';

class MyComponent extends Component {
 handleClick = () => {
  console.log(this);
 }
 
 render() {
  return (
   <div onClick={this.handleClick}>ES6方式創建的組件</div>
  );
 }
}

export default MyComponent;

Mixins

使用ES6語法來創建組件是不支持React mixins的,如果一定要使用React mixins就只能使用React.createClass方法來創建組件了。

import React,{ Component } from 'react';

var SetIntervalMixin = {
 doSomething: function() {
  console.log('do somethis...');
 },
};
const Contacts = React.createClass({
 mixins: [SetIntervalMixin],
 
 handleClick() {
  this.doSomething(); //使用mixin
 },
 render() {
  return (
   <div onClick={this.handleClick}></div>
  );
 }
});

export default Contacts;

以上是“如何使用ES6語法重構React”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

织金县| 全州县| 固阳县| 习水县| 平凉市| 山丹县| 宜宾市| 宁远县| 乌兰浩特市| 通河县| 平武县| 望奎县| 柞水县| 台山市| 白沙| 全南县| 砚山县| 桦川县| 当阳市| 阜平县| 武义县| 儋州市| 阜康市| 湟源县| 斗六市| 新源县| 宜宾市| 平塘县| 新蔡县| 兴化市| 含山县| 鄂伦春自治旗| 合肥市| 克山县| 白沙| 安丘市| 青州市| 凤庆县| 枝江市| 民乐县| 江都市|