2

我正在从 Rails 控制台访问我的 Rails 操作之一:

> @consumer = OAuth::Consumer.new(
>   x,
>   x,
>   site: "http://localhost:3000"
> )
> request = @consumer.create_signed_request(:get,"/get_user_info?email=x")
> uri = URI.parse("http://localhost:3000")
> http = Net::HTTP.new(uri.host, uri.port)
> http.request(request).body
=> "{\"first_thing\":\"Nick\",\"second_thing\":\"2012-12-26T11:41:11Z\",\"third_thing\":\"2012-12-26T11:40:03Z\"}"
> http.request(request).body.class
=> String

该操作应该返回 JSON 中的哈希,而不是字符串。以下是动作的结束方式:

render json: {
    first_thing: x,
    second_thing: x,
    third_thing: x
}

为什么这会以字符串的形式出现?我正在使用 Rails 3.2.0 和 Ruby 1.9.3。

4

2 回答 2

3

您将始终从 HTTP 请求中获取字符串。render :json只是将哈希转换为 JSON 字符串。

你需要JSON.parse在字符串上做。

于 2012-12-26T12:34:49.920 回答
2

它返回 JSON,因为整个 HTTP 消息都是基于字符串的。因此,要在控制台中获取 JSON 对象,您需要调用JSON.parse响应正文。

JSON.parse(http.request(request).body) # => {
#    first_thing: x,
#    second_thing: x,
#    third_thing: x
#}
于 2012-12-26T12:36:37.623 回答