Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Active Admin 拥有那些通过键入“active_admin_comments”自动进入您的管理屏幕的处理评论
我想做的是在他们的评论中添加一些字段,例如“状态”字段。这样做的最佳方法是什么?
谢谢
如果要更改默认值,可能唯一的方法build_comment_form 是Comments从active_admin_comments.rb
build_comment_form
Comments
active_admin_comments.rb
ActiveAdmin::Comments:: Views::Comments您还可以通过子类化、覆盖build_comment_form方法和使用来制作自己的评论组件
ActiveAdmin::Comments:: Views::Comments
builder_method :my_active_admin_comments_for
只是看到提到active_admin_comments.rb的参考。