再会。
如何在 params[:comments] 中添加 params[:controller] 值。(在视图中)
我希望评论模型将填充以下参数:
#comment.rb
id:
text:
commentable_id:
user_id:
controller: #for example 'posts', or 'galleries'
但是用户无权访问controller:
价值。
控制器:应默认确定。(例如帖子)
类似的东西http://railscasts.com/episodes/154-polymorphic-association
但commentable_type:
被交换controller:
您如何看待多态性关联的评论是否很好?
如何更好地实施此解决方案?