作者:墨镜空间新 | 来源:互联网 | 2023-10-10 10:43
我在父组件发送了请求,返回了一些数据,但是现在子组件收不到数据,请问通过props怎么传递,具体的代码实现或是简单的案例
...... {
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| constructor(props) {
// console.log(props); **这里输出没有得到数据thumbnails:{total: 0, url: Array(0)}**
super(props);
this.state = {
thumbnail:[]
};
};
render() {
return (
..........
componentWillReceiveProps(nextProps){
//debugger
console.log(nextProps); //没有数据
this.setState({
thumbnail:nextProps.thumbnail
}) |