0

有办法发布完整的相关对象吗?例如,当发表评论时,我需要一个完整的帖子对象,而不仅仅是帖子 ID:

代替:

{
   comment_id: 1,
   text: "my comment",
   post: 1
}

我需要:

{
   comment_id: 1,
   text: "my comment",
   post: {
      post_id: 1,
      title: "Post Title"
   } 
}
4

0 回答 0