我正在使用mongoose / nodejs从mongodb获取数据作为json。为了使用猫鼬,我需要像这样首先定义架构

var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var GPSDataSchema = new Schema({
    createdAt: { type: Date, default: Date.now }
    ,speed: {type: String, trim: true}
    ,battery: { type: String, trim: true }
});

var GPSData = mongoose.model('GPSData', GPSDataSchema);
mongoose.connect('mongodb://localhost/gpsdatabase');
var db = mongoose.connection;
db.on('open', function() {
    console.log('DB Started');
});


然后在代码中我可以从db中获取数据

GPSData.find({"createdAt" : { $gte : dateStr, $lte:  nextDate }}, function(err, data) {

            res.writeHead(200, {
                    "Content-Type": "application/json",
                    "Access-Control-Allow-Origin": "*"
            });
            var body = JSON.stringify(data);
            res.end(body);
        });


如何为像这样的复杂数据定义方案,您可以看到subSection可以更深入。

[
  {
    'title': 'Some Title',
    'subSection': [{
       'title': 'Inner1',
       'subSection': [
          {'titile': 'test', 'url': 'ab/cd'}
        ]
    }]
  },
  ..
]

最佳答案

the Mongoose documentation

var Comment = new Schema({
    body  : String
  , date  : Date
});

var Post = new Schema({
    title     : String
  , comments  : [Comment]
});


请注意如何将Comment定义为Schema,然后在数组Post.comments中对其进行引用

您的情况有些不同:您有一个自引用模式,我没有尝试过,但是看起来像这样:

var sectionSchema = new Schema({
  title: String
  ,subSections: [sectionSchema]
});

mongoose.model('Section', sectionSchema);


然后,您可以像这样添加subSections:

var section = new mongoose.model('Section');
section.subSections.push({title:'My First Subsection'})


让我知道如何解决。

关于node.js - 从动态模式获取数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9786448/

10-11 05:09
查看更多