TypeError:无法读取未定义的属性“ url0”

时间:2019-08-09 13:09:26

标签: reactjs

enter image description here,当我运行代码时,它运行正常,并且图像正在显示,但是一段时间后我收到了此错误。

<Card hoverable
           style={{ width:240 ,padding:3}}
          onClick={()=>this.moveToDest(item)}
          pose={this.state.hovering ? "hovered" : "idle"}
          onMouseEnter={() => this.setState({ hovering: true })}
          onMouseLeave={() => this.setState({ hovering: false })}

          //  src={'http://192.168.0.103:5001/'+item.images.filename}
          cover={<img  alt="example" src={item.images.url0} style={{height:'180px'}} />}
          ><Card.Meta title={item.name} description={item.country} /></Card>
      </List.Item>
    )}
  />

图像将显示在卡中

0 个答案:

没有答案