6

我第一次尝试用 Angular + express + mongodb 构建一些东西,所以我可能完全错误地处理这个问题。Express 被用来提供 json。然后 Angular 会处理所有的视图等。

我正在使用 Mongoose 与 Mongo 进行交互。

我有以下数据库架构:

var categorySchema = new mongoose.Schema({
  title: String, // this is the Category title
  retailers : [ 
    {
      title: String,  // this is the retailer title
      data: {       // this is the retailers Data
        strapLine: String,
        img: String ,  // this is the retailer's image
        intro: String,
        website: String,
        address: String,
        tel: String,
        email: String
      } 
    }
  ]
});

var Category = mongoose.model('Category', categorySchema);

在 Express 中,我有几条获取数据的途径:

 app.get('/data/categories', function(req, res) {
   // Find all Categories.
   Category.find(function(err, data) {
     if (err) return console.error(err);
     res.json(data)
   });
 });


 // return a list of retailers belonging to the category
 app.get('/data/retailer_list/:category', function(req, res) {
   //pass in the category param (the unique ID), and use that to do our retailer lookup
   Category.findOne({ _id: req.params.category }, function(err, data) {
     if (err) return console.error(err);
     res.json(data)
   }); 
 });

上述工作 - 我只是在试图获得单一零售商时遇到了大问题。我正在传递类别和零售商ID...我已经尝试了各种各样的事情-从对类别进行查找,然后在其中的内容上查找一个...但我就是无法让它工作。我可能会说这一切都错了......

我在这里找到了这个线程:在 Mongoose 中的 findOne Subdocument并实施了解决方案——但是,它返回了我所有的零售商——而不仅仅是我想要的那个。

// Returns a single retailer
app.get('/data/retailer_detail/:category/:id', function(req, res) {
  //pass in the category param (the unique ID), and use that to do our retailer lookup
 Category.findOne({_id: req.params.category , 'retailers.$': 1}, function(err, data) {
    console.log(data);
    if (err) return console.error(err);
    res.json(data)
  }); 
});    

谢谢,罗伯

4

2 回答 2

9

现在我看到了您的完整过滤器/查询,您应该能够在这种情况下使用数组位置运算符作为投影的一部分,而不是进行客户端过滤:

app.get('/data/retailer_detail/:category/:id', function(req, res) {
  //pass in the category param (the unique ID), and use that to do our retailer lookup
 Category.findOne({
    /* query */
    _id: req.params.category , 
    'retailers._id' : req.params.id
  },
  {  /* projection */
     "retailers.$" : 1 
  }, 
  function(err, data) {
  var retailer = _.where(data.retailers , { id : req.params.id });
    if (err) return console.error(err);
    res.json(retailer)
  }); 
}); 

为了{ "retailers.$" : 1 }正常工作,查询必须包含来自数组元素的字段。运算符仅返回第$一个匹配项。

于 2013-09-19T16:33:07.600 回答
1

隔壁的人使用 Mongo + Express 并给了我一些指示:他们向我解释了 mongo 是如何工作的,并建议我应该使用 underscore.js 来协助我的过滤器。

他们说我需要拉出整个类别 - 然后运行过滤器。我并不严格需要 , 'retailers._id' : req.params.id} 但他们说保留它,因为它保证只有当其中的项目包含该信息时才会返回该类别。我仍然不知道为什么或如何...所以不能真正将其标记为已解决..它已解决,但我还不知道为什么 - 所以会做更多的阅读:)

app.get('/data/retailer_detail/:category/:id', function(req, res) {
  //pass in the category param (the unique ID), and use that to do our retailer lookup
 Category.findOne({_id: req.params.category , 'retailers._id' : req.params.id}, function(err, data) {
  var retailer = _.where(data.retailers , { id : req.params.id });
    if (err) return console.error(err);
    res.json(retailer)
  }); 
}); 
于 2013-09-19T11:15:27.143 回答