load collections to a quickform in meteor
问题 I created two seperate schemas for payments collection and memberProfile . Now I need to create a quickform so I could load all the payments relevant to a unique memberProfile. //The code for memberPayment collection MemberProfiles = new Mongo.Collection('memberProfiles'); RecipeSchema = new SimpleSchema({ name: { type: String, label: "Name" }, desc: { type: String, label: "Description" }, payments:{ type: [PaymentSchema], autoValue: function () { return Payments.find({ memberId="uniqueId"});