Heim  >  Fragen und Antworten  >  Hauptteil

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?

伊谢尔伦伊谢尔伦2762 Tage vor713

Antworte allen(1)Ich werde antworten

  • 迷茫

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

    返回的是json数据吧,使用ruby的json模块处理

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

    Antwort
    0
  • StornierenAntwort