我对axios有这个错误,json加载正常,但它的渲染问题
actions.js:
export const getUser = (callback)=>{
return function(dispatch){
dispatch({type: 'FETCH_GET_USER_REQUEST'});
axios.get('https://jsonplaceholder.typicode.com/users')
.then((response)=>{
dispatch({type:'FETCH_GET_USER_SUCCES', payload:response.data});
if (typeof callback === 'function') {
callback(null, response.data)
}
})
}
}
reducerUser.js
export const getUserReducer = (state=[], action) =>{
switch(action.type){
case 'FETCH_GET_USER_REQUEST':
return state;
case 'FETCH_GET_USER_FAILURE':
return state;
case 'FETCH_GET_USER_SUCCES':
return [...action.payload.data];
default:
return state;
}
}
container.jsx
class GetUserContainer extends Component{
componentDidMount(){
this.props.getUser();
}
render(){
return(
<GetUserComponent allUser={this.props.allUser} />
)
}
}
function mapStateToProps(store){
return{
allUser:store.allUser
}
}
function matchDispatchToProps(dispatch){
return bindActionCreators({
getUser:getUser
}, dispatch)
}
store.js
const store = createStore(
reducers,
applyMiddleware(thunk, logger())
);
答案 0 :(得分:2)
查看您的控制台输出您的问题,当FETCH_GET_USER_SUCCES
操作被点击时,您的问题最有可能出现在您的reducer中。
你要退回:[...action.payload.data];
。尝试记录您的有效负载,有效负载上可能没有数据对象,因此转换undefined或null为对象错误。我打赌你只需要回复:[...action.payload];
答案 1 :(得分:0)
从错误堆栈中可以看到错误是从代码中的getUserReducer
调用的,然后是_toConsumableArray
,这是babel在将扩展运算符转换为es5时创建的辅助方法。
就像@ಠ_ಠ所说,你得到错误,因为action.payload.data
不是一个对象,在这种情况下应用扩展运算符将失败。 ([...action.payload.data]
)