Jquery 从 Json 检索数据时出现问题
这是相关的 JSON 片段:
"media$description":{
"$t":"Lorem Ipsum sit amet dolore des sit mutinons",
"type":"plain"
},
当我这样做时:
$("#pics2").html("Description: " +
data.feed.entry[0].media$group.media$description.type);
我得到:Description plain
。但是当我这样做时:
$("#pics2").html("Description: " +
data.feed.entry[0].media$group.media$description.$t);
我得到:Description undefined
。我需要获取文本“Lorem Ipsum...”
已解决:我正在调整其他人的代码,但我没有意识到我正在访问错误的 json 数据集(具有相同的结构)。
This is the relevant JSON fragment:
"media$description":{
"$t":"Lorem Ipsum sit amet dolore des sit mutinons",
"type":"plain"
},
when I do this:
$("#pics2").html("Description: " +
data.feed.entry[0].media$group.media$description.type);
I get: Description plain
. But when I do this:
$("#pics2").html("Description: " +
data.feed.entry[0].media$group.media$description.$t);
I get: Description undefined
. I need to get the text "Lorem Ipsum..."
Solved: I was tweaking someone else's code, and I did no realize tat I was accessing the wrong json data set (with identical structures).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论