我正在尝试从 RSS 提要中放置内容 - 问题是每个 RSS 提要都有不同的图像、内容等格式。
我正在尝试查看 javascript 或 jquery 中是否存在某些对象:
item.mediaGroups[0].contents[0].url
如何在 if 语句中检查它?我一直在获取没有这种结构的提要:
Uncaught TypeError: Cannot read property '0' of undefined
也试过:
if (typeof item.mediaGroups[0].contents[0].url === "undefined")
但我不断收到同样的错误。
谢谢!