mongoose-populate

    1熱度

    1回答

    爲什麼我在嘗試填充我的方案時無法獲得結果(我使用mongoosejs)。在我的情況下,我的類別,子類別,子類別方案不使用_id。我使用自定義ID。 這裏是我的產品方案: ..... categoryId: { type: String, ref: 'Catgory', required: true }, subcategoryId: { type: S

    0熱度

    1回答

    var estadoSchema = Schema({ estado_nome: String }); var cidadeSchema = Schema({ cidade_nome: String, estado_reference: [{ type: Schema.Types.ObjectId, ref: 'Estados'}] }); 這是設計模式,

    0熱度

    2回答

    這裏陣列的工作是我的架構: /** Schemas */ var profile = Schema({ EmailAddress: String, FirstName: String, LastName: String, BusinessName: String }); var convSchema = Schema({ name: Str

    1熱度

    2回答

    var CarSchema = new Schema({ name: {type: String}, partIds: [{type: Schema.Types.ObjectId, ref: 'Part'}], }); var PartSchema = new Schema({ name: {type: String}, props: [

    0熱度

    1回答

    我有一個貓鼬的模式是這樣的: var Address = { doorNo:String, city:String, state:String, country:String, district:String, zipCode:String, area:String, locality:String }; var

    0熱度

    1回答

    我有一個測驗模型,其中包含Section的數組,每個Section都有對Question的引用數組。 我想用問題填充測驗。 QuizModel var quizSchema = new Schema({ name: String, code: Number, creator: String, createdBy: { type: Schema.Types.O

    0熱度

    1回答

    每當我嘗試設置新的文檔引用數組時,都會收到錯誤。這導致錯誤說:「無法讀取屬性'$ isMongooseDocumentArray'未定義」;。 我將如何去更新一個文檔,其中包含來自另一個模式的其他文檔的引用數組。我試圖用一個新的集合來替換那個文檔引用的數組。 Lets say I had this schema with a particular reference: const userCo

    0熱度

    1回答

    我有一個orderSchema具有subdoc productOrder: const paymentTrans = require('./PaymentTrans').schema; const productOrder = require('./ProductOrder').schema; const orderSchema = new mongoose.Schema({ or

    0熱度

    2回答

    我看到很多關於這個問題,但我找不到什麼是錯的。當我使用填充來獲取「外鍵」時,我的字段未定義。 用戶模型: var userSchema = new Schema({ email : { type: String, required: true, unique: true }, password : { type: String, required: true },

    0熱度

    1回答

    我在(用戶1 < ---> 1 .. *機器人)之間發生了一對多關聯錯誤,我想在添加一個新文檔用戶訂閱他應該添加一個帶有(reference和nom)的新機器人,因此用戶信息應該作爲新文檔添加到用戶集合中,機器人信息應該添加爲我的mongodb數據庫中機器人集合的新集合。 /routes/users.js: router.post('/register', function(req, res, n