初めて Rails の Web サイトを作成していて、問題に遭遇しました。「wikiquote」ジェム ( 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>