Home  >  Article  >  Web Front-end  >  How to use react redux

How to use react redux

php中世界最好的语言
php中世界最好的语言Original
2018-06-02 15:47:241155browse

This time I will show you how to use react redux and what are the precautions when using react redux. The following is a practical case, let's take a look.

Environment preparation

For convenience, create-react-app is used here to build the react environment

create-react-app mydemo

Pop-up configuration

If you need to customize the react configuration, you need to run the following command to pop up the configuration file .

npm run eject

Install redux

npm i redux --save

Simple understanding

The simple usage of redux is to subscribe and publish information through its store.

Subscribe to action through subscribe and trigger action through dispatch. The reducer defines what each action needs to do.

demo code

reducer definition

const Add = 'addGirl', Remove = "removeGirl";
export function reducer(state = 0, action) {
  switch (action.type) {
    case Add:
      return state + 1;
    case Remove:
      return state - 1;
    default:
      return 10;
  }
}
//action creator,把action封装成一个方法,这样用的时候不用每次定义,避免出错
export function addCreator() {
  return { type: Add };
}
export function removeCreator() {
  return { type: Remove };
}
export function addAsync() {
  return (dispatch, getState) => {
    setTimeout(function () {
      dispatch(addCreator());
    }, 1000);
  }
}

Entry fileindex.js

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
import { createStore } from 'redux';
import thunk from 'redux-thunk';
import { reducer,addCreator,removeCreaator } from './index.redux';
import { Provider } from 'react-redux'
const store = createStore(reducer);
function render() {
  ReactDOM.render(
    <App store={store} addCreator={addCreator} removeCreator={removeCreator} />,
    document.getElementById('root')
  );
}
//封装成方法,方便下面的store的订阅调用
render();
//每当dispatch时,订阅的函数就会执行
store.subscribe(render);
registerServiceWorker();

App.js

import React, { Component } from 'react';
import './App.css';
class App extends Component {
 render() {
  var store=this.props.store;
  var num=store.getState();
  return (
   <p className="App">
    <h1>现在有机关枪{this.props.num}把。</h1>
    <button onClick={() => { store.dispatch(this.props.addCreator()) }}>add</button>
    <button onClick={() => { store.dispatch(this.props.removeCreator()) }}>remove</button>
   </p >
  );
 }
}
export default App;

To trigger action through store dispatch, the event subscribed in index.js will be executed.

Asynchronous execution of redux

If you need to perform asynchronous operations in redux, you need to install the react-thunk plug-in

npm i react-thunk --save

At the same time, you need the applyMiddleware of the redux plug-in

Key code

The setting is actually very simple. When creating the store, just pass the thunk to it.

import thunk from 'redux-thunk';
const store = createStore(reducer, applyMiddleware(thunk));

Add a button that triggers an asynchronous operation in app.js. An asynchronous method has been defined in the reducer.

export function addAsync() {
  return (dispatch, getState) => {
    setTimeout(function () {
      dispatch(addCreator());
    }, 1000);
  }
}

Asynchronously calling the method will return a method with two parameters. Both parameters are functions, the first is the dispatch function, and the second is the getState function.
dispatch triggers action, and getState gets the value of state.

Add code in app.js

<button onClick={() => { store.dispatch(this.props.addAsync()) }}>addAsync</button>

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use Vue to implement a countdown button

How to use Vue to write a two-way data binding

The above is the detailed content of How to use react redux. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn