英文:
createPortal Property 'children' is missing in type but required in type 'ReactPortal'
问题
我正在尝试将一个元素传送到 document.body
,但 TypeScript 报告了以下错误:
Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.
我该如何修复这个 createPortal
类型错误?
即使使用像 <p>
这样的原生 HTML 元素也不起作用,如下所示。
英文:
I'm trying to portal out an element to document.body
but typescript claims
Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.
How can I fix this createPortal typing error?
It also does not work even with a native HTML element like <p>
as shown below.
答案1
得分: 0
createPortal
在 NextJS 组件中不起作用。
英文:
createPortal
does not work in NextJS components
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论