【发布时间】:2019-11-30 16:34:54
【问题描述】:
我的组件代码如下
componentDidMount = () => {
this.props.dispatch(getCountry());
}
render() {
let rows = this.props.countries.map((item, index) => (//some code here));
return (
<div>
{rows ? (
//components HTML code here
) : (
<img src="loading.gif" alt="Loading ..."/>
)}
</div>
)
}
但组件在 API 获取数据之前加载。
【问题讨论】: