我正在编写我的第一个 Rails 网站,但遇到了一个问题。我想使用“wikiquote”gem(http://hemanth.github.io/wikiquote-gem/)在欢迎页面上显示“今日报价”。我把它放在下面的代码中,并认为它会起作用,但是弄错了。浏览器没有说有任何错误,但也没有任何显示。有什么想法吗?我这样做完全错了吗?
在welcome_controller.rb
class WelcomeController < ApplicationController
def index
end
def get_qod
@qod = WikiQuote.get
end
end
在welcome/index.html.erb
<h3> <%= @qod.to_s %></h3>