说我有课程,其中包含学生。我在Course课程中也有 def top_student 。我现在在课程之上有一个active_scaffold,但如果我将 top_student 添加为列,则会显示#,但没有链接。我想要一个链接到学生谁是顶尖学生。有没有办法实现这一目标?
答案 0 :(得分:0)
class Course < ActiveRecord::Base
# Class method
def self.top_student
# Some logic
end
end
它应该是:
<%=link_to "Top Student", Course.top_student %>