@media (max-width: 1450px)
{
padding-right: ${props => (props.meta.count > 0 ? '6px' : '0')};
}
此meta.count道具确实存在,但当我运行应用程序时,我得到:
TypeError: Cannot read property 'count' of undefined
const { lastUpdated, meta } = this.props;
元道具通过redux选择器加载:
const mapStateToProps = state => ({
meta: getAlertsMeta(state),
});
如何避免/修复此问题?