gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 14:21:04 24 4
gpt4 key购买 nike

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

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com