TypeError:无法读取 JSON 对象中未定义的 React strapi 的属性“url”
我正在使用 strapi 和 react。我正在获取一个 JSON 对象 (home)。如果我执行
console.log(home)
,我会得到:
{
"id": 6,
"created_at": "2020-06-21T07:07:36.000Z",
"updated_at": "2020-06-21T07:18:40.000Z",
"HomeTextTop": "Home text here.",
"HomeTitle": "Home title here",
"Hero": {
"id": 3,
"name": "facade_pastel_summer_123664_800x600",
"alternativeText": "",
"caption": "",
"width": 800,
"height": 600,
"url": "http://someurlhere.com"
}
}
如果我执行
console.log(home.Hero)
,我会得到相应的结果:
{
"id": 3,
"name": "facade_pastel_summer_123664_800x600",
"alternativeText": "",
"caption": "",
"width": 800,
"height": 600,
"url": "http://someurlhere.com"
}
但是,如果我深入研究并尝试仅获取 URL
console.log(home.Hero.url)
,我会得到此错误:
TypeError: Cannot read property 'url' of undefined react strapi in JSON object
我在这里遗漏了什么?
“action”获取代码是:
export const fetchHome = () => {
return dispatch => {
dispatch(fetchHomeBegin())
return fetch(`${strapiUrl}/home`, {
method: 'get',
mode: 'cors',
headers: { 'Content-Type': 'application/json' }
})
.then(res => res.json())
.then(json => {
console.log(json)
dispatch(fetchHomeSuccess(json))
})
.catch(error => dispatch(fetchHomeFail(error)))
}}
并且
JSON.stringify(home.Hero)
以字符串形式给出相同的结果
以下是正在发生的事情。
This is likely because at the moment of reading url from Hero, Hero is not yet defined (as the error message suggests). You could tackle this by first confirming Hero is defined before reading url. Something like this: console.log(home.Hero && home.Hero.url).
Though this leads to a lot of cumbersome code, and therefor (imo) it would be better to use https://www.npmjs.com/package/immutable to manage the data that is returned from the Strapi api.
You would then set home as an immutable object (a Map) and read url like this: console.log(home.getIn([‘Hero’, ‘url’]). If Hero is undefined here your application will not crash, but instead false will be returned. - Boaz Poolman - slack.strapi