我试图在node.js中使用elasticSearch + mongose(elmongo)实现搜索引擎。每当我尝试运行搜索API时,我都会得到 "错误":" IndexMissingException [[ads] missing]"
这是代码
advertisingSchema.js
var mongoose = require('mongoose');
var elmongo = require('elmongo');
var Schema = mongoose.Schema;
var AdSchema = new Schema({
title: String,
description: String,
category: String,
phoneNumber: { type: Number, unique: true},
photos: [{ type: String }],
created: { type: Date, default: Date.now},
price: Number,
password: String
});
AdSchema.plugin(elmongo);
module.exports = mongoose.model('Ad', AdSchema
);
api.js
var Ad = require('../models/advertising');
module.exports = function(app, express) {
var api = express.Router();
Ad.sync(function(err) {
console.log("Check the number sync");
})
api.post('/search', function(req, res) {
Ad.search(req.body, function(err, result){
if(err) {
res.send(err);
return;
}
res.json(result);
});
});
return api;
}
我已经完成了所有事情,但它只是不想返回搜索结果。
答案 0 :(得分:1)
由于错误提示没有名为' ads'在您的群集中。除非您已设置属性" action.auto_create_index"否则将自动创建索引。在elasticsearch配置中为false。您可以通过编程方式或通过运行curl请求来创建索引。 请参阅create index api.