- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个 Next.js headless 应用程序,我在其中通过对 Umbraco 后端的 API 调用获取数据。我使用 getServerSideProps 为我的每个页面加载数据,然后将其作为“数据”传递到功能组件和页面中。
我遇到的问题是网站的页眉/页 footer 分有单独的端点,并且在所有页面之间共享。因此,每页调用 3 次(页眉、数据、页脚)是一种耻辱和糟糕的做法。
要获取页眉/页脚一次,然后将其保存在多个页面上,同时保持 SSR,可以做些什么? (重要)。我试过使用 cookie,但它们不能保存那么多数据。下面是一些代码:
页面获取数据:
export async function getServerSideProps({ locale }) {
const footer = await Fetcher(footerEndPoint, locale);
return {
props: {
locale: locale,
footer: footer
}
}
}
布局
const Layout = (props) => {
const { children, footer } = props;
return (
<>
<Header />
<main>
{children}
</main>
<Footer footer={footer} />
</>
);
};
export default Layout;
最佳答案
我看到三个选项可以实现仅 SSR 数据获取一次,以获取在页面转换之间永远不会改变的内容:
你可以只使用getInitialProps()
在 _app.tsx 中。这首先在服务器上运行,您可以将响应值缓存在变量中。下次getInitialProps()
被执行时,它将只提供缓存的值而不是触发另一个请求。要在客户端进行这项工作,您必须在 useEffect
中重新水合缓存变量。 :
// pages/_app.tsx
let navigationPropsCache
function MyApp({ Component, pageProps, navigationProps }) {
useEffect(
()=>{
navigationPropsCache = navigationProps
},
[]
)
return <>
<Navigation items={navigationProps}/>
<Component {...pageProps} />
</>
}
MyApp.getInitialProps = async () => {
if(navigationPropsCache) {
return {navigationProps: navigationPropsCache}
}
const res = await fetch("http://localhost:3000/api/navigation")
const navigationProps = await res.json()
navigationPropsCache = navigationProps
return {navigationProps}
}
请注意 getInitialProps()
自下一个 9.3 以来是不推荐使用的功能。不确定将来会支持多长时间。请参阅:https://nextjs.org/docs/api-reference/data-fetching/getInitialProps
参见 https://github.com/breytex/firat500/tree/trivial-getInitialProps完整的代码示例。
这个解决方案基于两个想法:
<script>
附加到 DOM 的所获取数据的字符串化版本对 DOM 进行补水。 .// server/index.ts
server.all("*", async (req, res) => {
const html = await app.renderToHTML(req, res, req.path, req.query);
const navigationProps = await getNavigationProps()
const navigationHtml = renderToString(React.createElement(Navigation, {items: navigationProps}))
const finalHtml = html
.replace("</body>", `<script>window.navigationProps = ${JSON.stringify(navigationProps)};</script></body>`)
.replace("{{navigation-placeholder}}", navigationHtml)
return res.send(finalHtml);
});
// components/Navigation.tsx
export const Navigation: React.FC<Props> = ({items})=>{
const [finalItems, setFinalItems] = useState(items ?? [])
useEffect(
()=>{
setFinalItems((window as any).navigationProps)
},
[]
)
if(!Array.isArray(finalItems) || finalItems.length === 0) return <div>{"{{navigation-placeholder}}"}</div>
return (
<div style={{display:"flex", maxWidth: "500px", justifyContent: "space-between", marginTop: "100px"}}>
{finalItems.map(item => <NavigationItem {...item}/>)}
</div>
)
}
我现在认为这是一个非常肮脏的例子,但你可以基于此构建一些强大的东西。
在此处查看完整代码:https://github.com/breytex/firat500/tree/next-link-navigation
这个例子有点长,基于 urql
的杰出工作项目:https://github.com/FormidableLabs/next-urql/blob/master/src/with-urql-client.tsx
请在此处查看完整示例:https://github.com/breytex/firat500/tree/prepass
只要可行,我个人会选择选项 #1。#3 看起来是一种具有良好开发人员体验的方法,适合更大的团队。 #2 需要一些爱才能真正有用 :D
关于reactjs - Next.js - 页脚/页眉仅通过 API 加载一次,服务器端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67431077/
我是一名优秀的程序员,十分优秀!