gpt4 book ai didi

ruby-on-rails - 来自 URL 的 Ruby on Rails 和 JSON 解析器

转载 作者:数据小太阳 更新时间:2023-10-29 06:37:06 24 4
gpt4 key购买 nike

我使用 'gem json' 并需要从一些 url 加载 JSON 数据,例如:

“http://locallhost:3000/qwerty/give_json.json”

{"one":"Omg","two":125,"three":"Hu"}

我有 Rails 应用程序

class QwertyController < ApplicationController
require 'json'

def get_json
source = "http://localhost:3000/qwerty/give_json.json"
@data = JSON.parse(JSON.load(source))
end
end

我得到错误

JSON::ParserError in QwertyController#get_json
795: unexpected token at 'http://localhost:3000/qwerty/give_json.json'

在字符串中:@data = JSON.parse(JSON.load(source))

怎么了?如何获取 JSON 数据并解析它?我试试@data["one"] ...

最佳答案

JSON.load 根据文档获取一个 StringIO 对象的源

http://www.ruby-doc.org/stdlib-1.9.3/libdoc/json/rdoc/JSON.html#method-i-load

[17] pry(main)> {hello: "World"}.to_json
=> "{\"hello\":\"World\"}"
[18] pry(main)> JSON.load(_)
=> {"hello"=>"World"}

您给它一个字符串,它是一个 URL,这就是您收到错误的原因。您可以使用 open-uri 从 URL 中获取数据,然后由 JSON 像这样解析...

[22] pry(main)> require 'open-uri'
=> false
[23] pry(main)> JSON.load(URI.open("https://api.github.com"))
=> {"current_user_url"=>"https://api.github.com/user",
"authorizations_url"=>"https://api.github.com/authorizations",
"emails_url"=>"https://api.github.com/user/emails",
"emojis_url"=>"https://api.github.com/emojis",
"events_url"=>"https://api.github.com/events",
"feeds_url"=>"https://api.github.com/feeds",
"following_url"=>"https://api.github.com/user/following{/target}",
"gists_url"=>"https://api.github.com/gists{/gist_id}",
"hub_url"=>"https://api.github.com/hub"}

注意

URI.open 返回一个 StringIO 对象,该对象响应返回 JSON 数据的 read。 JSON.load 将数据转换为哈希以供使用。

要解析 JSON 字符串,您可以使用 JSON.loadJSON.parse

关于ruby-on-rails - 来自 URL 的 Ruby on Rails 和 JSON 解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18581792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com