Redux Action没有达到Reducer [反应]

时间:2018-12-15 17:09:26

标签: reactjs redux

正如标题所述,我的React应用存在问题,可以执行Redux Action,但此后再没有还原。我看过我过去从事的项目,以及这里的几篇文章,但是我不确定我的代码出了什么问题,从而阻止了Action碰到减速器。我已经粘贴了下面的代码,但是请告知我是否还可以提供其他功能。

index.js:

import React from 'react';
import ReactDom from 'react-dom';
import App from './components/App.jsx';
import { Provider } from 'react-redux';
import { createStore } from 'redux';
import reducer from './reducers/usersRedcuers';
import './index.css';

const store = createStore(reducer);

ReactDom.render(
    <Provider store={store}>
      <App />
    </Provider>, document.getElementById('root')
)

App.jsx组件:

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';

import Auth from '../modules/Auth';
import { login } from '../actions/usersActions';

class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      auth: null,
      token: '',
      password: '',
      username: '',
    }

    const {
      login,
    } = this.props;
  }



  loginHandler() {
    const { password, username } = this.state;
    const auth = Auth.isUserAuthenticated()
    const token = null;

    login(auth, token, password, username);   
  };

  render() {
    return (
      <div className="App">
        <div className="title">
          Recipe Box
        </div>
        <div className="form-inline login-form">
          <div className="form-group">
            <input
              className="form-control"
              onChange={e => this.setState({ username: e.target.value })}
              placeholder="Username"
            />
            <input
              className="form-control"
              onChange={e => this.setState({ password: e.target.value })}
              placeholder="Password"
              type="password"
            />
          </div>
          <button
            className="btn btn-success"
            onClick={() => this.loginHandler()}
            type="button"
          >
            Login
          </button>
        </div>
      </div>
    );
  }    
}

function mapDispatchToProps(dispatch) {
  console.log('dispatching:', dispatch)
  return bindActionCreators({login}, dispatch);
}

function mapStateToProps(state) {
  return { state }
}

export default connect(mapStateToProps, mapDispatchToProps)(App);

动作常量:

// AUTH
export const LOGIN = 'LOGIN';
export const LOGOUT = 'LOGOUT';

// USERS
export const ADD_USER = 'ADD_USER';
export const DELETE_USER = 'DELETE_USER';
export const UPDATE_USER = 'UPDATE_USER';

动作:

import {
  ADD_USER,
  DELETE_USER,
  LOGIN,
  LOGOUT,
  UPDATE_USER,
} from '../constants/constants';

export const login = (auth, token, password, username) => {
  const action = {
    type: LOGIN,
    auth,
    token,
    password,
    username,
  }
  console.log('login action:', action)
  return action;
}

减速器:

import {
  LOGIN,
  LOGOUT,
} from '../constants/constants';

const login = (action) => {
  console.log('hitting B')
  const { auth, token, password, username } = action;

  return {
    auth: auth,
    token: token,
    password: password,
    username: username,
  }
}

const authControl = (state = [], action) => {
  console.log('hitting C: ', action)
  let authControl = null;
  switch(action.type) {
    case LOGIN:
      authControl = [...state, login(action)]
      console.log('authControl:'. authControl);
      return authControl;
    default:
      console.log('hittibbng default', state)
      return state;
  }
}

export default authControl;

2 个答案:

答案 0 :(得分:1)

在App.jsx组件中,您应该使用作为道具传递给该组件的操作,而不是直接调用该操作。

loginHandler应该看起来像这样:

  loginHandler() {
    const { password, username } = this.state;
    const auth = Auth.isUserAuthenticated()
    const token = null;

    this.props.login(auth, token, password, username);   
  };

答案 1 :(得分:0)

好像您错过了派遣到减速器

import {
  ADD_USER,
  DELETE_USER,
  LOGIN,
  LOGOUT,
  UPDATE_USER,
} from '../constants/constants';

export const login = (auth, token, password, username) => dispatch => {
  const action = {
    type: LOGIN,
    auth,
    token,
    password,
    username,
  }
  console.log('login action:', action)
  dispatch(action)
}