我有一个加载器组件,我希望它在我的页面呈现时出现。根据文档,当使用 suspense 我的代码应该是这样的
const DynamicLazyComponent = dynamic(() => import('../components/loader'), {
suspense: true,
})
function MyApp({ Component, pageProps }) {
return (
<>
<Suspense fallback={`loading`}>
<DynamicLazyComponent />
...some code here...
</Suspense>
</>
)
}
但我最终得到一个错误,上面写着
下一个/动态中的悬念选项使用无效。阅读更多: https ://nextjs.org/docs/messages/invalid-dynamic-suspense
我确定我遵循了文档中的说明,但我不确定为什么会出现这些错误。