我想通过我的 React Universal(带有 Next.js)应用程序中的 REST 服务调用接收数据fetch()
,然后将结果呈现到 JSX 中,如下所示:
class VideoPage extends Component {
componentWillMount() {
console.log('componentWillMount');
fetch(path, {
method: 'get',
})
.then(response =>
response.json().then(data => {
this.setState({
video: data,
});
console.log('received');
})
);
}
render() {
console.log('render');
console.log(this.state);
if (this.state && this.state.video) {
return (
<div>
{this.state.video.title}
</div>
);
}
}
}
export default VideoPage;
不幸的是,输出是这样的:
componentWillMount
render
null
received
这确实有意义,因为对 fetch 的调用是异步的,并且render()
在对 REST 服务的调用完成之前完成。
在客户端应用程序中这不会有问题,因为会调用状态更改render()
然后更新视图,但在通用应用程序中,尤其是在客户端上关闭 JavaScript 时,这是不可能的。
我该如何解决这个问题?
有没有办法同步或延迟调用服务器render()
?