溫馨提示×

溫馨提示×

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

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

Redux-React 代碼原理分析

發布時間:2020-05-17 18:38:56 來源:網絡 閱讀:295 作者:sendoffice 欄目:web開發

目標

react使用redux的主要目的是:
1)實現簡潔統一的狀態維護,提高代碼可維護性;
2)實現簡潔的注入依賴,避免重重傳遞參數;
Plug Any Data Into Any Component. This is the problem that Redux solves. It gives components direct access to the data they need.
3)實現自動化渲染。

index.js

應用的入口代碼

import React from 'react';
import { render } from 'react-dom';
import Counter from './Counter';
import { Provider } from 'react-redux';
import { createStore } from 'redux';

const initialState = {
  count: 0
};

function reducer(state = initialState, action) {
  switch(action.type) {
    case 'INCREMENT':
      return {
        count: state.count + 1
      };
    case 'DECREMENT':
      return {
        count: state.count - 1
      };
    default:
      return state;
  }
}

/**
* 1) 創建全局存儲對象 store,傳入合適的reducer.
*/
const store = createStore(reducer);

/**
* 2) 將store實例綁定到 App
*/

const App = () => (
  <Provider store={store}>
    <Counter/>
  </Provider>
);

render(<App />, document.getElementById('root'));

組件代碼

import React from 'react';
import { connect } from 'react-redux';

/**
* index.js創建的store全局對象,會注入到所有下級對象中,因此這里才可以使用dispatch函數來改變屬性。
*/
class Counter extends React.Component {
  increment = () => {
    //實際上是調用全局store對象的dispatch函數
    this.props.dispatch({ type: 'INCREMENT' });
  }

  decrement = () => {
    this.props.dispatch({ type: 'DECREMENT' });
  }

  render() {
    return (
      <div>
        <h3>Counter</h3>
        <div>
          <button onClick={this.decrement}>-</button>
          <span>{this.props.count}</span>
          <button onClick={this.increment}>+</button>
        </div>
      </div>
    )
  }
}

//具體的屬性轉換函數
function mapStateToProps(state) {
  return {
    count: state.count
  };
}

//通過connect方法將store的state屬性轉換成本組件的屬性
export default connect(mapStateToProps)(Counter);
向AI問一下細節

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

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女