最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Passing props to dynamic component in NextJS - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 11

You would do like any other ponent:

<MapWithNoSRR yourProp={data}></MapWithNoSRR>
发布评论

评论列表(0)

  1. 暂无评论