reactjs - React-native 不使用 Redux Action 重新渲染

标签 reactjs react-native redux react-redux

我有一个组件应该在用户通过身份验证时导航:

componentDidUpdate(prevProps, prevState) {
    if (this.props.authenticated) {
      this.props.navigation.navigate('Main')
    }
  }

当我发送 authLogin 时,它应该会导致重新呈现,它会处理导航:

export const authLogin = (username, password) => {
  return dispatch => {
    dispatch(authStart());
    axios.post(`http://10.0.2.2:8000/api/v1/rest-auth/login/`, {
      username: username,
      password: password
    })
      .then(response => {
        var token = response.data.key;
        try {
          AsyncStorage.setItem('token', token);
        } catch (err) {
          console.log(err)
        }
        dispatch(authSuccess(token));
      })
      .catch(err => {
        dispatch(authFail());
        console.log(err);
      })
  }
}

这是我的 reducer :

export default function (state = initialState, action) {
  switch (action.type) {
    case "AUTH_START": {
      return {
        ...state,
        authenticating: true,
      }
    }
    case "AUTH_SUCCESS": {
      return {
        ...state,
        authenticating: false,
        authenticated: true,
        token: action.token,
      }
    }
    case "AUTH_FAIL": {
      return {
        ...state,
        authenticating: false,
        authenticated: false,
      }
    }
    case "AUTH_LOGOUT": {
      return {
        ...state,
        authenticating: false,
        authenticated: false,
        token: null,
      }
    }
    default:
      return state
  }
}

和 Action 创造者:

export const authStart = () => ({type: "AUTH_START"})
export const authSuccess = token => ({type: "AUTH_SUCCESS", token})
export const authFail = () => ({type: "AUTH_FAIL"})

我的控制台正在记录 Redux 操作已分派(dispatch)并且状态正在更改,但没有发生重新渲染。这是整个组件:

import React, { Component } from 'react';
import { View, StyleSheet } from 'react-native';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import LoginForm from '../components/LoginForm';
import { authLogin } from '../actions/authActions';

export class LoginScreen extends Component {
  handlePress = async (username, password) => {
    await this.props.authLogin(username, password);
  }

  componentDidUpdate(prevProps, prevState) {
    if (this.props.authenticated) {
      this.props.navigation.navigate('Main')
    }
  }

  render() {
    return (
      <View style={styles.loginForm}>
        <LoginForm handlePress={this.handlePress} {...this.props} />
      </View>
    );
  }
}

const mapState = state => {
  return {
    authenticated: state.auth.authenticated
  }
};

const mapDispatch = dispatch => {
  return bindActionCreators({
    authLogin,
  }, dispatch)
};

export default connect(mapState, mapDispatch)(LoginScreen);

LoginScreen.propTypes = {
  authLogin: PropTypes.func.isRequired,
  authenticated: PropTypes.bool.isRequired,
};

const styles = StyleSheet.create({
  loginForm: {
    justifyContent: 'center',
    alignItems: 'center',
    flex: 1
  }
});

这是我的商店:

import {  combineReducers } from 'redux';
import { createStore, applyMiddleware } from 'redux';
import { logger } from 'redux-logger';
import thunk from 'redux-thunk';
import auth from './auth'

const reducer = combineReducers({auth})
const enhancer = applyMiddleware(thunk, logger)
const store = createStore(reducer, enhancer)

export default store

商店在 App.js 中的 Provider 中连接。

最佳答案

我添加了另一个 reducer ,它立即修复了它。显然 redux 不喜欢 combineReducers() 只有一个参数。

即改变

const reducer = combineReducers({auth})

const reducer = combineReducers({auth, otherReducer})

关于reactjs - React-native 不使用 Redux Action 重新渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54874231/

相关文章:

javascript - 如何访问 saga 函数内的操作值

ReactJS onchange - 条件元素渲染

reactjs - 如何使用 React 正确编写条件类型?

javascript - React 渲染期望的表达式

react-native - 为什么不生成设备 token ?

react-native - 单击按钮时 react native 更改 webview 源

reactjs - 重新加载后将用户事件保留在状态中

reactjs - this.setState() 不会渲染获取的 Firebase 图片

ios - react native : how to get the names of all the albums

javascript - Redux:两个组件加载相同的资源,仅在一个组件中显示加载器