17

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

在此处输入图像描述

这是代码

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 中的某个类别?

4

2 回答 2

0

您正在使用

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

categories在你的代码中是undefined.

您必须使用类别来代替categories您在模式声明中提到的键作为类别

希望它能解决你的问题。

于 2016-06-09T09:40:07.637 回答
-1

编辑:

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

于 2017-05-22T14:26:07.243 回答