显示映射到自定义属性的列上的链接

时间:2009-10-07 19:23:03

标签: ruby-on-rails activescaffold

说我有课程,其中包含学生。我在Course课程中也有 def top_student 。我现在在课程之上有一个active_scaffold,但如果我将 top_student 添加为列,则会显示#,但没有链接。我想要一个链接到学生谁是顶尖学生。有没有办法实现这一目标?

1 个答案:

答案 0 :(得分:0)

class Course < ActiveRecord::Base
  # Class method
  def self.top_student
    # Some logic
  end
end

它应该是:

<%=link_to "Top Student", Course.top_student %>