gpt4 book ai didi

javascript - Create-react-app with codesplitting 并等待

转载 作者:行者123 更新时间:2023-11-30 07:54:16 25 4
gpt4 key购买 nike

this在官方 react 网站上的文章中,我可以清楚地看到使用 await 动态导入模块是允许的,但是当我尝试这样做时(与示例中完全一样)我的代码错误是我得到的:

Syntax error: await is a reserved word (11:31)

我错过了什么?

编辑

代码只是为了方便:

class App extends Component {
state = {
lazyComponent: null
}
componentDidMount() {
const { default: Message } = await import('./Message.js');
this.setState({
lazyComponent: <Message />
})
}
render() {
return (
<div className="App">
<p>Let's start!</p>
{this.state.lazyComponent || <p>Loading...</p> }
</div>
);
}
}

export default App;

最佳答案

您在 componentDidMount() 之前错过了 async 单词,它显示在您提供的链接中

关于javascript - Create-react-app with codesplitting 并等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44392741/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com