1.actions must be plain objects.Use custom middleware for async
原因:dispatch(action),action格式不对
例如:
改成:
2.Cannot convert undefined or null to object
原因:渲染的时候用到的数据源为null或不存在
解决:数据源非真的时候不进行渲染!
shouldComponentUpdate(nextProps, nextState){
alert(123);
console.log(nextProps);
if(!nextProps.datasource){
return false;
}
return true;
}
网友评论