文章分类 - redux
摘要:redux的基本使用,包括了异步action,这里就简单的用一个js文件 ### redux的基本使用,包括了异步action,这里就直接一个js搞定 import React,{Component} from 'react'; import ReactDOM from 'react-dom'; i
阅读全文
摘要:如何使用redux 1.在src index.js ```js import React from 'react'; import ReactDOM from 'react-dom' import App from './components/app.jsx' import store from '
阅读全文
摘要:redux的使用步驟 1.在入口index.js文件中引入redux 2.创建一个store(createStore(reduces)) ```js import React from 'react'; import ReactDOM from 'react-dom' import {createS
阅读全文