我正在使用urigo:angular package。在我的项目中,我有两个集合:帖子和用户。是否可以从服务器发布一个对象,如下所示:
[{createdAt: 20-12-2015,
text: 'something',
user: { name: 'some name'}
},
{createdAt: 22-12-2015,
text: 'something2',
user: { name: 'some other name'}
}]
我的意思是将用户对象插入每个帖子。
更新: 我有两个集合L帖子和用户。每个帖子都有用户ID。当我使用publishComposite:https://github.com/Nitrooos/Forum-Steganum/blob/posts/server/posts.methods.coffee执行类似的操作时,我在客户端(https://github.com/Nitrooos/Forum-Steganum/blob/posts/client/posts/posts.controller.coffee)只有一个包含帖子的数组,而不包含用户。 我有这个:
[{createdAt: 20-12-2015,
text: 'something',
userId: 123
},
{createdAt: 22-12-2015,
text: 'something2',
userId: 123
}]
那么,当我想要显示用户名时,我将不得不对每个关于用户的帖子发出请求?