Ruby和Ruby on Rails中解析JSON格式資料的執行個體教程_ruby專題

來源:互聯網
上載者:User

Ruby解析JSON
Ruby解析Json例子:

json = '["a", "B", "C"]'puts "Unsafe #{unsafe_json(json).inspect}" #輸出Unsafe ["a", "B", "C"] 

Ruby解析Json把上面的json字串解析成Array。這樣的方法並不安全,比如:

json = 'puts "Danger Will Robinson"' puts "Unsafe #{unsafe_json(json).inspect}" 

又該輸出什麼呢?很遺憾,解析不出什麼東西,跳出一個警告:warning: character class has `[' without escape安全的方法如下:

module SafeJSON  require 'monitor'  def SafeJSON.build_safe_json  ret = nil  waiter = ''  waiter.extend(MonitorMixin)  wait_cond = waiter.new_cond  Thread.start do  $SAFE = 4  ret = Proc.new {|json|  eval(json.gsub(/(["'])/s*:/s*(['"0-9tfn/[{])/){"#{$1}=>#{$2}"}) }  waiter.synchronize do wait_cond.signal  end  end waiter.synchronize do wait_cond.wait_while { ret.nil? } end  return ret  end  @@parser = SafeJSON.build_safe_json  # Safely parse the JSON input  def SafeJSON.parse(input)  @@parser.call(input)  rescue SecurityError  return nil  end end 

包含這個Module,你就可以這樣使用Ruby解析Json:

peoples=SafeJSON.parse('{"peoples":[{"name":"site120","email":"site120@163.com","sex":"男"},{"name":"site120_2","email":"site120@163.com_2","sex":"男_2"}]}') puts peoples["peoples"][1]["name"] #輸出site120_2 

 
Ruby on Rails中
rails通過RJS內建了對AJAX的支援,也許用到json的機會並不多,不過作為一種資料交換的方便格式,還是值的注意,下面

這裡使用到Json外掛程式,安裝命令

gem install json_pure

使用例子:

 require "open-uri" require 'json' def index  uri = '*****'  response = nil  begin   open(uri) do |http|    response = http.read   end   @json = JSON::parse(response)  rescue => text   # 異常處理   logger.error("GetMailListserror=" + text)   flash.now[:error] = '擷取郵件清單失敗。'  end end

這裡json解析器需要json格式的key必須帶引號,如果沒有引號的話會解析出現異常。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.