Elasticsearch.js AngularJS自动完成

时间:2016-05-02 09:35:22

标签: angularjs elasticsearch autocomplete elasticsearch.js

我正在尝试使用Elasticsearch,angularJS和bootstrap实现自动完成功能。

我受到这个解决方案的启发: autocomplete/typeahead angularjs bootstrap on elasticsearch

这是我的Angular代码:

angular.module('cineAngularApp')
     .service('client', function (esFactory) {
        return esFactory({
            host: 'localhost:9200',
            apiVersion: '2.2',
            log: 'trace'
        });
     });

 angular.module('cineAngularApp')
 .controller('AutocompleteCtrl', function ($scope,client) {

    $scope.getResult = function(val){

        return client.search({
            index: 'autocomplete_test',
            fields: 'city', 
            q: 'city:'+val
        }).then(function (resp) {
            var keywords = [];
            for(var i in resp.hits.hits){
                var fields = (resp.hits.hits[i]).fields["city"];
                keywords.push(fields);
            }
            return keywords;
        }, function (err) {
            console.trace(err.message);
        });
    };
 });

这是我的问题

上面的代码在我使用简单查询时工作正常,但只要我通过添加 body 更改查询就不起作用。

 angular.module('cineAngularApp')
 .controller('AutocompleteCtrl', function ($scope,client) {

    $scope.getResult = function(val){

        return client.search({
            index: 'autocomplete_test',
            fields: 'city', 
            body: {
                query: {
                    match: {
                        city: val
                    }
                }
            }
        }).then(function (resp) {
            var keywords = [];
            for(var i in resp.hits.hits){
                var fields = (resp.hits.hits[i]).fields["city"];
                keywords.push(fields);
            }
            return keywords;
        }, function (err) {
            console.trace(err.message);
        });
    };
 });

我不知道它是否可以提供帮助,但我也注意到在调试时它不再是POST请求了,但它是一个OPTION。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

试试这个:

return client.search({
    index: 'movies',
    "fields": [ "title" ], 
    "body": { // Use body field on elasticsearch client library
        "query": {
            "query_string": {
               "fields": ["title"],
               "query": "title:"+val
            }
        }
    }
}).then(function (resp) {
    // ....
})