admin管理员组文章数量:1340984
I'm importing a map ponent dynamically with Next.js and I need to pass some data to it via props.
const MapWithNoSSR = dynamic(() => import("../Map"), {
ssr: false,
loading: () => <p>...</p>,
});
Is there any way to do that?
I'm importing a map ponent dynamically with Next.js and I need to pass some data to it via props.
const MapWithNoSSR = dynamic(() => import("../Map"), {
ssr: false,
loading: () => <p>...</p>,
});
Is there any way to do that?
Share Improve this question edited Dec 9, 2021 at 23:56 juliomalves 50.6k23 gold badges178 silver badges169 bronze badges asked Dec 9, 2021 at 22:09 Ala Ben AichaAla Ben Aicha 1,2864 gold badges18 silver badges36 bronze badges 4- 1 And what is the problem, exactly? – Yevhen Horbunkov Commented Dec 9, 2021 at 22:15
- the problem is that when I passed the data in props like I usually do, the ponent didn't read the data, so I thought maybe there is another way of passing data to dynamic ponents in next JS – Ala Ben Aicha Commented Dec 9, 2021 at 22:19
- 2 '> ... when I passed the data in props like I usually do, the ponent didn't read the data...' Then, you've, probably, forgotten to paste here relevant piece of code. – Yevhen Horbunkov Commented Dec 9, 2021 at 22:22
-
How are you using
MapWithNoSSR
? – juliomalves Commented Dec 9, 2021 at 23:57
1 Answer
Reset to default 11You would do like any other ponent:
<MapWithNoSRR yourProp={data}></MapWithNoSRR>
本文标签: javascriptPassing props to dynamic component in NextJSStack Overflow
版权声明:本文标题:javascript - Passing props to dynamic component in NextJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743661297a2517994.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论