需要帮助解析 JSON

发布于 2024-11-08 23:33:37 字数 1439 浏览 0 评论 0原文

response = Typhoeus::Request.get(API_SERVER_ADDRESS + "users/" + params[:id] +"/friends" + API_OAUTH_TOKEN)
@parsed_json = ActiveSupport::JSON.decode(response.body)

 @parsed_json['get.friendlist']["friendslist"].each do |first_name, last_name|
 p first_name
 end

Json 格式:-

    {
        -get.friendlist: {
            -friendslist: [
            -{
                id: "6"
                first_name: "Jeyaprabhu"
                last_name: "Palanichamy"
                im_screen_name: ""
                email: "[email protected]"
                password: "c4cce19cf6453c10754339a15cf9265d"
                mobile: ""
                date_of_birth: ""
                gender: "male"

            }
            -{
                id: "72"
                first_name: "Saravanan"
                last_name: "R"
                im_screen_name: "Saravanan R"
                email: "[email protected]"
                password: "7cc2f5546b199421184a287bb75c406d"
                mobile: ""
                date_of_birth: "9/9/1985"
                gender: "male"


            }
            ]
        }
    }

它不打印first_name 的值..

response = Typhoeus::Request.get(API_SERVER_ADDRESS + "users/" + params[:id] +"/friends" + API_OAUTH_TOKEN)
@parsed_json = ActiveSupport::JSON.decode(response.body)

 @parsed_json['get.friendlist']["friendslist"].each do |first_name, last_name|
 p first_name
 end

Json Format:-

    {
        -get.friendlist: {
            -friendslist: [
            -{
                id: "6"
                first_name: "Jeyaprabhu"
                last_name: "Palanichamy"
                im_screen_name: ""
                email: "[email protected]"
                password: "c4cce19cf6453c10754339a15cf9265d"
                mobile: ""
                date_of_birth: ""
                gender: "male"

            }
            -{
                id: "72"
                first_name: "Saravanan"
                last_name: "R"
                im_screen_name: "Saravanan R"
                email: "[email protected]"
                password: "7cc2f5546b199421184a287bb75c406d"
                mobile: ""
                date_of_birth: "9/9/1985"
                gender: "male"


            }
            ]
        }
    }

Its not printing the value of first_name..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆凄美了谁 2024-11-15 23:33:37

试试这个..

<% @parsed_json['get.friendlist']["friendslist"].each do |json_output| %>
  <%=  json_output['first_name'] %>
<% end %>

Try this..

<% @parsed_json['get.friendlist']["friendslist"].each do |json_output| %>
  <%=  json_output['first_name'] %>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文