条件:导出静态html
如何识别是按next/link
跳转还是按direct access
跳转(即标签访问)?
我尝试将pageProps
与useRouter
和_app.tsx
结合使用,但均失败。
帮帮我!
由Google翻译
由于Next/App
组件不会为客户端转换而卸载,因此您可以在从useEffect
导出的App
组件内设置_app.tsx
钩子]]
function MyApp({ Component, pageProps }) {
useEffect(() => {
console.log('Direct access');
}, []);
return <Component {...pageProps} />
}
export default MyApp;