Jquery 从 Json 检索数据时出现问题

发布于 2024-11-09 15:45:35 字数 636 浏览 0 评论 0原文

这是相关的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文