我对React还是很陌生,所以我用create-react-app启动了我的应用程序。
尝试使用React.Lazy()
导入react组件时,我始终收到以下错误:
Module parse failed: Unexpected token (8:45)
You may need an appropriate loader to handle this file type.
导入代码:
const AssetDetailsContent = React.lazy(() => import('./AssetDetailsContent'));
出口代码:
export default connect(mapStateToProps, mapDispatchToProps)(AssetDetailsContent);
大多数其他答案都提到了webpack配置,但是由于我没有一个,并且已经尝试了一些可以解决其他问题的配置,因此我认为这可能是React-Redux的问题。