如何使用 getServerSideProps
我是 next.js 的新手。最近,我了解了 next.js 中的预渲染,我对如何从 getServerSideProps
_app.tsx
import type { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;
/pages/tasks/list.tsx更新 props 数据感到困惑
I am new in next.js. Recently,I learned about pre-render in next.js,and I am confused about how to update props data from getServerSideProps
_app.tsx
import type { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;
/pages/tasks/list.tsx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是如何使用 GetServerSideProps 的示例:
希望我能提供帮助!
Here is an example on how to use GetServerSideProps :
Hope I could help !