2

我注意到 RailsAdmin 有一个 object_label 方法,但不清楚如何使用它:

config.model Entity do
  object_label do
    # ???
  end
end
4

1 回答 1

3
RailsAdmin.config do |config|
  config.model Team do
    object_label_method do
      :custom_label_method
    end
  end

  def custom_label_method
    "Team #{self.name}"
  end
end

从文档中提取

如果您只想使用模型中的属性,则可以将其作为要调用的方法传递...就像:name返回object.name标签一样。

于 2012-07-11T15:25:20.420 回答