admin管理员组文章数量:1344201
I call the getServerSession function inside the getServerSideProps function and return the session I get from there as props, but as long as I have an _app.tsx structure like in the documentation published by NextAuth, the session returns to the index.tsx as undefined. I don't know what I'm doing wrong, but when I add the extra line, I solve the problem. I just want to know what is that
//version in documentation
import { SessionProvider } from "next-auth/react"
export default function App({
Component,
pageProps: { session, ...pageProps },
}) {
return (
<SessionProvider session={session}>
<Component {...pageProps} />
</SessionProvider>
)
}
//The new version where I added the line that redefines pageProps. I don't know why this is needed.
import { SessionProvider } from "next-auth/react"
export default function App({
Component,
pageProps: { session, ...pageProps },
}) {
pageProps = { session, ...pageProps}
return (
<SessionProvider session={session}>
<Component {...pageProps} />
</SessionProvider>
)
}
// The index.tsx
import type { InferGetServerSidePropsType, GetServerSideProps } from 'next'
import { getServerSession } from "next-auth";
import { authOptions } from "./api/auth/[...nextauth]";
import { useSession, signIn, signOut } from "next-auth/react"
type Props = InferGetServerSidePropsType<typeof getServerSideProps>
export default function Page({user,session}: Props) {
const { data: session2 } = useSession()
return (
<div>
<p>This is server {"session: "+JSON.stringify(session)}</p>
<p>This is client {JSON.stringify(session2)}</p>
</div>
)
}
export const getServerSideProps:GetServerSideProps = (async (context) => {
const session = await getServerSession(context.req, context.res, authOptions)
if (!session) {
return {
props: {}
}
}
return {
props: {
session
}
}
})
本文标签: react nativeNextAuth getServerSideProps return undefined sessionStack Overflow
版权声明:本文标题:react native - NextAuth getServerSideProps return undefined session - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737450a2530268.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论