Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有办法发布完整的相关对象吗?例如,当发表评论时,我需要一个完整的帖子对象,而不仅仅是帖子 ID:
代替:
{ comment_id: 1, text: "my comment", post: 1 }
我需要:
{ comment_id: 1, text: "my comment", post: { post_id: 1, title: "Post Title" } }