标签: json angular post ng-admin
有一种发布完整相关对象的方法吗?例如,我发布评论时需要一个完整的帖子对象,而不仅仅是帖子ID:
而不是:
{ comment_id: 1, text: "my comment", post: 1 }
我需要:
{ comment_id: 1, text: "my comment", post: { post_id: 1, title: "Post Title" } }