删除了问题以避免回复
答案 0 :(得分:0)
不要将arrOfPets包装在大括号中。试试这个:
if (this.props && this.props.petfinder) {
const arrOfPets = this.props
const allPets = arrOfPets.petfinder
}
如果要使用解构语法,则您的变量需要与对象属性名称匹配。
const { petfinder } = this.props
答案 1 :(得分:0)
在深入挖掘后,似乎api本身存在问题。谢谢你的帮助!!!