如何在 mongoosastic 上填充?

How do I do populate on mongoosastic?

提问人:Jack Moscovi 提问时间:2/4/2016 最后编辑:Vini.g.ferJack Moscovi 更新时间:9/26/2019 访问量:1599

问:

我的目标是在 mongoosastic 搜索中填充某些字段,但是如果我执行以下代码,它将始终返回

enter image description here

代码如下

var mongoose = require('mongoose');
var Category = require('./category');
var mongoosastic = require('mongoosastic');
var Schema = mongoose.Schema;

var ProductSchema = new Schema({
  category: { type: Schema.Types.ObjectId, ref: 'Category', es_schema: Category, es_indexed:true, es_select: 'name'},
  name: String,
  price: Number,
  image: String
});

ProductSchema.plugin(mongoosastic, {
  hosts: [
    'localhost:9200'
  ],
  populate: [
    {path: 'category', select: 'name'}
  ]
});

module.exports = mongoose.model('Product', ProductSchema);


var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var CategorySchema = new Schema({
  name: { type: String, unique: true, lowercase: true}
});

module.exports = mongoose.model('Category', CategorySchema);

api.js

router.post('/search', function(req, res, next) {
  console.log(req.body.search_term);
  Product.search({
    query_string: { query: req.body.search_term }
  }, function(err, results) {
    if (err) return next(err);
    res.json(results);
  });
});

我应该怎么做才能在 mongoosastic 中填充某个类别?

node.js elasticsearch mongoose mongoosastic

评论

0赞 someoneHere 6/11/2016
你让它起作用了吗?我有一个类似的问题,我在填充时得到 0 次点击。我已经阅读了无数次文档,但我不确定我哪里出错了。如果您能提供见解:stackoverflow.com/questions/37758652/......
0赞 Michael 11/1/2016
你解决了这个问题吗?

答:

0赞 Akhil P 6/9/2016 #1

您正在使用

populate: [
  {path: 'categories', select: 'name'}
]

但是在您的代码中是.categoriesundefined

您必须使用类别来代替类别因为您拥有 在架构声明中将键作为类别提及

希望它能解决您的问题。

-1赞 Alex 5/22/2017 #2

编辑:

category: { type: Schema.Types.ObjectId, ref: 'Category', es_schema: Category, es_indexed:true, es_select: 'name'},

=> _category : { type: Schema.Types.ObjectId, ref: 'Category' },

并使用填充:.populate('_category ', 'name')

希望对您有所帮助。

查看更多:http://mongoosejs.com/docs/populate.html

评论

0赞 Jack Moscovi 5/23/2017
这只适用于猫鼬,我说的是猫鼬。