我保存登录userId,保存在我的Meteor应用程序集合中的每条记录,如下例所示,但我想知道Meteor中是否有任何方法我可以根据用户保存的ID检索用户名而无需对用户集合进行另一次查询?在Node.js / mongoose中有这个Populate函数,但我似乎无法在Meteor中找到类似的包/函数。所以我想知道是否有人可以通过建议解决这个问题(如果有的话)来帮助我。感谢
var newInvoice = {
customerid: $(e.target).find('[name=customer]').val(),
userid: Meteor.userId(),
//....more fields here
}
Meteor.call('saveInvoice', newInvoice, function(error, id){
if(error)
return alert(error.reason);
});