petfinder和ReactJS的API未定义问题

时间:2017-05-09 00:54:48

标签: javascript api reactjs

删除了问题以避免回复

2 个答案:

答案 0 :(得分:0)

不要将arrOfPets包装在大括号中。试试这个:

if (this.props && this.props.petfinder) {
const arrOfPets = this.props
const allPets = arrOfPets.petfinder
}

如果要使用解构语法,则您的变量需要与对象属性名称匹配。

const { petfinder } = this.props

Javascript (ES6) const with curly braces

答案 1 :(得分:0)

在深入挖掘后,似乎api本身存在问题。谢谢你的帮助!!!