gpt4 book ai didi

next.js - NextJS 服务器端断点可能吗?

转载 作者:行者123 更新时间:2023-12-03 19:30:15 26 4
gpt4 key购买 nike

是否可以在 NextJS 服务器端代码中设置断点?我有一个 debugger在我的 getInitialProps并且它永远不会在那个时候中断。它只会在浏览器上运行时中断,服务器端断点似乎永远不会被捕获。

最佳答案

你问的问题多美啊!

getInitialProps 在组件被调用时调用。就像 react 中的 componentDidMount 一样。不同之处在于...
您必须在调用之前发送它需要的 Prop 。
否则 ssr 将无法工作。

此方法不显示控制台,必须返回并显示方法中的参数

static async getInitialProps = () => {
return {custom: 'value'}
}


render() {
return(
<div>
{JSON.stringify(custom)}
</div>
);
}

关于next.js - NextJS 服务器端断点可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55554864/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com