Ruby和Ruby on Rails中解析JSON格式数据的实例教程
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
WillRobinson"'
puts"Unsafe#{unsafe_json
(json).inspect}"
又该输出什么呢?很遗憾,解析不出什么东西,跳出一个警告:warning:characterclasshas`['withoutescape安全的方法如下:
moduleSafeJSON
require'monitor'
defSafeJSON.build_safe_json
ret=nil
waiter=''
waiter.extend(MonitorMixin)
wait_cond=waiter.new_cond
Thread.startdo
$SAFE=4
ret=Proc.new{|json|
eval(json.gsub(/(["'])/s*:/s*
(['"0-9tfn/[{])/){"#{$1}=>#{$2}"})}
waiter.synchronizedowait_cond.signal
end
end
waiter.synchronizedowait_
cond.wait_while{ret.nil?}end
returnret
end
@@parser=SafeJSON.build_safe_json
#SafelyparsetheJSONinput
defSafeJSON.parse(input)
@@parser.call(input)
rescueSecurityError
returnnil
end
end
包含这个Module,你就可以这样使用Ruby解析Json:
peoples=SafeJSON.parse('
{"peoples":[{"name":"site120","
email":"site120@163.com","sex":"男"},
{"name":"site120_2","email":"site1
20@163.com_2","sex":"男_2"}]}')
putspeoples["peoples"][1]["name"]
#输出site120_2
RubyonRails中
rails通过RJS内置了对AJAX的支持,也许用到json的机会并不多,不过作为一种数据交换的方便格式,还是值的注意,下面
这里使用到Json插件,安装命令
geminstalljson_pure
使用例子:
require"open-uri"
require'json'
defindex
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必须带引号,如果没有引号的话会解析出现异常。