MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

हमेशा एम्बेडेड के साथ एम्बर डेटा बहु स्तरीय पदानुक्रम

एम्बर-रेल में अभी भी कुछ बग फिक्स बाकी हैं:फ़ंक्शन के कारण हमें नुकसान उठाना पड़ा

extractEmbeddedBelongsTo: function(loader, relationship, data, parent, prematerialized)     {
var reference = this.extractRecordRepresentation(loader, relationship.type, data, true);
prematerialized[relationship.key] = reference;

// If the embedded record should also be saved back when serializing the parent,
// make sure we set its parent since it will not have an ID.
var embeddedType = this.embeddedType(parent.type, relationship.key);
if (embeddedType === 'always') {
  reference.parent = parent;
}

}

BelongsTo संबंध एम्बेडेड वस्तुओं के निष्कर्षण को छोड़ रहा है। गलत यहाँ है:

extractEmbeddedBelongsTo: function(loader, relationship, data, parent, prematerialized) {
var reference = loader.sideload(relationship.type, data);
prematerialized[relationship.key] = reference;

// If the embedded record should also be saved back when serializing the parent,
// make sure we set its parent since it will not have an ID.
var embeddedType = this.embeddedType(parent.type, relationship.key);
if (embeddedType === 'always') {
  reference.parent = parent;
}

}




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB BSON दस्तावेज़ आकार सीमा को समझना

  2. विशिष्ट फ़ील्ड - mongoDB के आधार पर किसी सरणी में अद्वितीय आइटम कैसे सुनिश्चित करें?

  3. नेवला findByIdAndUpdate सही मॉडल नहीं लौटा रहा है

  4. MongoDB में सूचकांकों की एक सूची?

  5. MongoDB में दिनांक को स्ट्रिंग में बदलने के 3 तरीके