私はこのサンプルドキュメントを持っています:
{
"_id" : ObjectId("4f98fd1df2699a2f8a000003"),
"comments" : "Foo bar",
"location" : "Somewhere",
"user_id" : ObjectId("4f98fd1df2699a2f8a000001")
}
コントローラを使用してデータを取得した場合:
respond_to :json
def index
respond_with Comment.all
end
JSONを返します:
[{
"_id": "4f98fd1df2699a2f8a000003",
"comments": "Foo bar",
"location": "Somewhere",
"user_id": "4f98fd1df2699a2f8a000001",
}]
私の質問は、応答にUserクラスのフィールドを簡単に含めるにはどうすればよいですか?
class User
include Mongoid::Document
field :username
field :first_name
field :last_name
end