我需要在 Ruby(不是 Rails 或任何其他框架)中轻松获取像 GET 这样的请求数据的最低要求是多少?
我想避免必须使用 ruby on rails 或任何其他框架来获取这些数据,所以理想的答案不会有框架依赖。
我当前的设置在 apache ( )上有一个 ruby 文件 ( script
)cgi-bin
site.com/script
#!/usr/bin/env ruby
# bare minimum to output content
puts "Content-type: text/html"
puts
puts "it works!" #works fine.
# how would I obtain request data like GET parameters here
# for a url like site.com/script?hi=there
# in PHP, I would $_GET['hi']