我注意到RailsAdmin有一个object_label方法,但目前还不清楚如何使用它:
config.model Entity do
object_label do
# ???
end
end
答案 0 :(得分:2)
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
作为标签。