Лихий метр прочитал файл Json и отправил значение

Мне нужно отправить значение на лихой метр из файла JSON: Parse не работает тоже содержимое = JSON.parse(file.read)

require 'json'


file = File.open('/mnt/json/process1.json')
contents = file.read

SCHEDULER.every '2s' do


  contents["poolused"] = { label: "poolused" , value: (contents["poolused"][:value])}
  send_event('synergy3',   { items: contents.values})

end

Это мой файл JSON

{   
    "label":"value",
    "PoolName":  "SDS2_D2600-SAS-450G-15K",
    "poolpercent":  "70",
    "Date":  "07/23/2015 15:33:57",
    "pooltotal":  "3540529446912",
    "poolused":  "2466384969728"
}

Ошибка:

scheduler caught exception:
undefined method `[]' for nil:NilClass
/home/toto/dashboard_v2/jobs/sample.rb:22:in `block in <top (required)>'

3 ответа

Решение

Экспорт файла JSON с PowerShell: "ASCII" не UTF 16

 | ConvertTo-Json | Out-file d:\products\Dashing\json\process2.json -encoding ASCII

Отправить значение для лихих

require 'json'


file = File.read('./process3.json')
counts = JSON.parse(file)

SCHEDULER.every '2s' do

  synergy14 = counts["poolused"]

  send_event('synergy3',   { value: synergy14} ) 

end
/opt/ruby/lib/ruby/gems/2.2.0/gems/json-1.8.3/lib/json/common.rb:155:in `parse': 757: unexpected token at '▒▒{' (JSON::ParserError)

Ошибка с:

file = File.open('/mnt/json/process1.json') 
contents = JSON.parse(file.read)        

Ваш contents переменная содержит строку JSON, прочитанную из файла. Для преобразования в хеш вам понадобитсяcontents = JSON.parse(file.read)

Другие вопросы по тегам