3
從JSON文件中的值這是一個sample.json文件如下解析在紅寶石
{
"name": "Jack (\"Bee\") Nimble",
"format": {
"shape": "rect",
"width": 1920,
"height": 1080,
"interlace": false,
"framerate": 24
}
}
在sample.json文件已被打開的規格文件。
describe Samplespec do
before :all do
@jsonfile = File.open('sample.json').read
@file_json = Samplespec.new(@jsonfile)
end
我在sample.rb文件
require 'json'
def initialize(val)
@parsed_val = JSON.parse(val)
end
這似乎並不工作寫這個。請幫忙。謝謝
似乎沒有工作?你會得到什麼錯誤,會發生什麼? – 2012-08-01 13:06:11
sample.json文件原樣顯示{「name」:「Jack(\」Bee \「)Nimble」, 「format」:{ 「shape」:「rect」, 「width」: 1920, 「height」:1080, 「interlace」:false, 「framerate」:24 } } – user1568617 2012-08-01 13:08:40