0

这是我的对象。我想在任务中找到文本,即task.name。

{
  "_id" : ObjectId("55e2acd77e5e4ddc037b3ef5"),
  "userId" : "123",
  "username" : "user12",
  "address" : "abc",
  "number" : 928228828282.0,
  "task" : [{
      "name" : "metac",
      "productCode" : "1234",
      "_id" : ObjectId("55e2acd77e5e4ddc037b3ef7")
    }, {
      "name" : "alfa33",
      "productCode" : "1234",
      "_id" : ObjectId("55e2acd77e5e4ddc037b3ef6")
    }],
  "__v" : 0
}

所以当我查询它时,它将返回所有任务。

curl -XPOST 'localhost:9200/userprofiles/_search?pretty' -d '
{
  "query": { "match": { "name": "alfa33" } }
}

输出:

{
    "took": 51,
    "timed_out": false,
    "_shards": {
        "total": 5,
        "successful": 5,
        "failed": 0
    },
    "hits": {
        "total": 1,
        "max_score": 0.19178301,
        "hits": [
            {
                "_index": "userprofiles",
                "_type": "userprofile",
                "_id": "55e2acd77e5e4ddc037b3ef5",
                "_score": 0.19178301,
                "_source": {
                    "userId": "123",
                    "username": "user12",
                    "address": "abc",
                    "number": 928228828282,
                    "task": [
                        {
                            "name": "metac"
                        },
                        {
                            "name": "alfa33"
                        }
                    ]
                }
            }
        ]
    }
}

如您所见,任务返回完整数组,我只需要选择 1 个任务。

我在节点内部使用 mongoosastic,它会给我带来问题,所以我尝试直接对 Elasticsearch 使用请求。

mongoosastic 配置 - > elasticsearch搜索文本返回完整数组问题我尝试了这个解决方案但不起作用。

目前我在 git bush 中使用 curl 命令搜索我的结果,而不是使用搜索功能

编辑

文件:-猫鼬和猫鼬。

var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var medicineSchema = require('./search')
var mongoosastic = require("mongoosastic");

var UserProfileSchema = new Schema({
    userId: String,
    username: String,
    address: String,
    number: Number,
    task: [{
        name: {
            type: String,
            es_boost: 2.0 // or es_indexed:true
        },
        taskCode: String,
    }]
});
UserProfileSchema.plugin(mongoosastic);
UserProfileSchema.plugin(mongoosastic, {
    host: "localhost",
    port: 9200,
    //  ,curlDebug: true
});
UserProfile = module.exports = mongoose.model('UserProfile', UserProfileSchema);
UserProfile.createMapping(function(err, mapping) {
    if (err) {
        console.log('error creating mapping (you can safely ignore this)');
        console.log(err);
    } else {
        console.log('mapping created!');
        console.log(mapping);
    }
});

我的搜索查询:

var UserProfileSchema = require('../../app/models/user');
 UserProfileSchema.search({
        query_string: {
            query: name
        }
    }, function(err, result) {
        if (err) {
            callback({
                RESULT_CODE: '-1',
                MESSAGE: 'System error'
            });
        } else {
            callback({
                RESULT_CODE: '1',
                DATA: result
            });
        }
    });
4

1 回答 1

1

为了将它们视为单独的对象,您需要为“任务”字段使用嵌套类型,因此设置映射如下:

{
    "mappings": {
        "doc": {
            "... all the other fields ...": {},
            "task": {
                "properties": {
                    "_id": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "productCode": {
                        "type": "string"
                    }
                },
                "type": "nested"
            }
        }
    }
}

重新索引您的文档后。您需要使用带有内部命中查询的嵌套查询来返回与查询匹配的任务:

{
  "query": {
    "nested": {
      "path": "task",
      "query": {
        "match": {
          "name": "alfa33"
        }
      },
      "inner_hits": {}
    }
  }
}

inner_hits部分将返回与查询本身匹配的特定任务。

我在这里发布了一个 完整输出的示例,因为在这里完整发布有点长。

于 2015-08-31T03:46:56.890 回答