我们有Questions
和Answers
,每一个问题has_many :answers
和那些答案belongs_to :questions
。
我想在当前问题上显示当前答案数。
我在我的 Answers_Controller 中尝试过:
def show
@question = Question.find(params[:question_id])
@answers_count = @question.answers.count
end
然后叫上我的看法<%= @answers_count %>
。
但我认为我在这里遗漏了一些东西,因为没有显示任何内容。