我试图从redux存储中获取状态,但是每当我访问redux操作时,我的组件就会加载两次 第一次手动加载路由时,它返回两个对象,一个是空状态的对象,另一个是更新状态的对象 但是,当我在路由之间切换时,它返回新状态,但每次返回两次,或者返回两个状态相同的对象。
这会导致在加载组件时出现不确定的错误,特别是当我访问任何状态属性时手动加载路线时
Redux action
export function getRelationshipStatus() {
let headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${localStorage.getItem('access_token')}`
}
return dispatch => {
axios.get('http://localhost/relation/api/get-relationship-status', { headers })
.then( response => dispatch({type:ActionTypes.GET_RELATIONSHIP_STATUS,payload:response.data}))
}
};
减速器
import React from 'react'
import {GET_RELATIONSHIP_STATUS} from '../actions/action-types'
const initialState={
profile:{},
}
export default function (state=initialState,action) {
switch(action.type){
case GET_RELATIONSHIP_STATUS:
console.log(action.payload);
return {...state,profile:action.payload}
break;
default:
return state
}
}
实际组件
import React, { Component } from 'react'
import {connect} from 'react-redux'
import {getRelationshipStatus} from '../../store/actions'
class People extends Component {
constructor(props){
super(props)
}
componentDidMount(){
this.props.getRelationshipStatus()
}
render() {
console.log(this.props.profile)
return (
<div>
</div>
)
}
}
function mapStateToProps(state) {
return {
profile: state.profile,
}
}
export default connect(
mapStateToProps,
{ getRelationshipStatus }
)(People);
答案 0 :(得分:1)
嘿,这是React-redux加载两次的总自然行为。
即使我能解释你,但这也不是问题
我确定此行为没有问题 顺便问一下,错误名称是什么?