0

ローカルの .json ファイルから返される情報を読み取ろうとしています。このファイルから json 情報を返すようにするにはどうすればよいですか? 私がこれまでに持っているもの:

#! /usr/bin/env ruby
require 'json'
require 'cgi'

cgi = CGI::new()

if cgi.request_method == 'GET' then
  json = File.read('path/to/file.json')
  print json
end
4

1 に答える 1

1

Ruby 1.9.3 を使用している場合、File.read が存在しない場合は次のようにします。

if cgi.request_method == 'GET'
    print File.open('path/to/file.json').read
end

また、http://www.ruby-doc.org/stdlib-1.9.3/libdoc/cgi/rdoc/CGI.html#method-i-outを使用する必要があります

cgi.out("nph"        => true,
    "status"     => "OK",  # == "200 OK"
    "server"     => ENV['SERVER_SOFTWARE'],
    "connection" => "close",
    "type"       => "text/html",
    "charset"    => "iso-2022-jp",
      # Content-Type: text/html; charset=iso-2022-jp
    "language"   => "ja",
    "expires"    => Time.now + (3600 * 24 * 30),
    "cookie"     => [cookie1, cookie2],
    "my_header1" => "my_value",
    "my_header2" => "my_value") { "string" }
于 2012-05-02T21:15:07.927 に答える