我注意到 RailsAdmin 有一个 object_label 方法,但不清楚如何使用它:
config.model Entity do
object_label do
# ???
end
end
我注意到 RailsAdmin 有一个 object_label 方法,但不清楚如何使用它:
config.model Entity do
object_label do
# ???
end
end
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
标签一样。