2

我正在尝试以艰难的方式学习 Ruby 的 ex:50 ..这涉及使用“sinatra”创建 hello_world 应用程序,但我遇到了如下错误:

 ruby lib/gothonweb.rb
    lib/gothonweb.rb:5:in `<module:Gothonweb>': undefined method `get' for Gothonweb:Module             (NoMethodError)
    from lib/gothonweb.rb:4:in `<main>'
4

1 回答 1

2

这不是你做过的事情,给出的代码不起作用:

require_relative "gothonweb/version"
require "sinatra"

module Gothonweb
  get '/' do
    greeting = "Hello, World!"
    return greeting
  end
end

这不起作用,因为它被包装在一个模块中。尝试这个:

require_relative "gothonweb/version"
require "sinatra"

get '/' do
  greeting = "Hello, World!"
  greeting # there's no need for the return here,
           # the last expression is the return value
end
于 2013-05-21T00:25:36.013 回答