我有一个可重用的组件,我已经在组件文件夹上创建了一个,我拥有登录到系统的用户的所有详细信息,这是一个标题部分。我正在尝试使用抓取与.getInitialPropsisomorphic-unfetchstatic async getInitialProps(ctx) { const UserdetailsRespone = await fetch("my API url"); const UserdetailsJson = await UserdetailsRespone.json(); return { UserDetails: UserdetailsJson.root[0] }; }在渲染方法中,当我记录 this.props.UserDetails 时,我得到 .它与我在页面文件夹中执行的API获取相同,我可以在其中获取API响应。但是我无法在组件文件夹中获取响应。undefined有人可以帮我解决它吗?提前致谢。
2 回答
江户川乱折腾
TA贡献1851条经验 获得超5个赞
getInitialProps运行服务器端和客户端。因此,您必须小心如何使用它。我通常用于检查是否被称为服务器端。typeof Window === 'undefined'getInitialProps
如果你有一个子组件,你需要在每次挂载它时进行调用,为什么不坚持呢?componentDidMount
async componentDidMount() {
const userDetailsResponse = await fetch("my API url");
const userDetailsJson = await userDetailsResponse.json();
this.setState({userDetails: userDetailsJson})
}
然后,您可以从状态而不是 props 访问属性。
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
添加回答
举报
0/150
提交
取消