Next.js: document is not defined

后端 未结 6 1771
一个人的身影
一个人的身影 2021-02-07 15:22

I am trying to create a payment form where people can pay but I keep getting this error.

document is not defined

I\'m using Next.js. Ple

6条回答
  •  萌比男神i
    2021-02-07 16:00

    To access the document in Next.js you need await the page render first then get it in a variable, like so:

    const [_document, set_document] = React.useState(null)
    
    React.useEffect(() => {
        set_document(document)
    }, [])
    

提交回复
热议问题