在rails中找到被调用方法的“根”参数的最佳方法是什么?
User.first.comments # => [#<Comment id: "1", name: "First comment" ...
我需要这样的东西:
User.first.comments #<User id:1, name:"First User", comments: [
#<Comment id: "1", name: "First comment" ..., #<Comment ... ]
需要序列化..谢谢。