Home  >  Q&A  >  body text

ruby - How to get data by curb gem better?

I use curb gem to get some data from other website.

When I try

http = Curl.get("http://www.somesite.com/")
puts http.body_str

The data were

"{\"data\":[{\"id\":\"10000123456789\",\"name\":\"\\u1234\\u1234 \\u1234\\u1234\"},{\"id\":\"10000123465789\",\"name\":\"\\u1234\\u1234 \\u1234\\u1234\"},...}}}"

How to get data or id or name?

伊谢尔伦伊谢尔伦2713 days ago684

reply all(1)I'll reply

  • 迷茫

    迷茫2017-04-21 11:19:17

    The returned data is json data, use ruby’s json module to process it

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

    reply
    0
  • Cancelreply