我的Node.js应用程序中有弹性查询,如下所示。我使用弹性搜索版本6.2.2。但是当我从postman执行API时,它显示以下错误:
Unhandled rejection Error: Content-Type header [] is not supported
exports.radix = function (req, res) {
var elasticsearch = require('elasticsearch'),
client = new elasticsearch.Client({
host: 'localhost:9200'
});
client.search({
index: 'xpertradix',
type: 'search',
size: 20,
body: {
query: {
match: {
name: req.param('term')
}
}
}
}).then(function (resp) {
var data = helper.prepareRadix(resp.hits.hits);
res.json(data);
});
};
我一直在努力解决这个问题2天。有人可以帮我解决这个问题吗?