Twitter の人がつぶやきを投稿したのにコメントが入っているようなソーシャル ネットワークを作成する必要があります。私が定義した
var Comment = new Schema();
Comment.add({
title : { type: String, index: true }
, date : Date
, body : String
, created_by: { type: Schema.Types.ObjectId, ref: 'User' }
});
var TweetSchema = new Schema ({
created_at : { type: Date, default: Date.now }
, created_by: { type: Schema.Types.ObjectId, ref: 'User' }
, title : String
, comments : [Comment]
, body : String
, picture: [Url]
})
私が提供するREST APIを介してモバイルアプリケーションのリクエストを書いているので、ツイートを作成するときに、creator_infoとコメントを取得するためにサーバーに何を送信すればよいですか? 私はここで何かを読みました。しかし、ツイートやコメントを作成して作成者を設定するメソッドの書き方がわかりません。