假设您有一个fileNames数组:

[
    'filename1_c4d.rar',
    'text122_octane.c4d',
    'texture1.png',
    'texture2.png',
]

在我的数据库中我有一个Tags的集合:
[
    {
        _id: 'id1',
        name: 'cinema4d',
        aliases: ['.c4d', 'c4d', 'cinema4d'],
    },
    {
        _id: 'id2',
        name: 'octane',
        aliases: ['octane'],
    },
    {
        _id: 'id3',
        name: 'textures',
        aliases: ['texture', 'textures'],
    },
    // ...
]

我的目标是在Tags的帮助下,获取fileNames中有myaliases子字符串的所有mongoose。(Tags.find({ someFancyQuery: fileNames })
下面是一个例子,可以更好地理解:
我有这个文件名:filename1_c4d.rar。基于此名称,查询应该能够获取名为Tagcinema4d,因为它的别名包含文件名filename1_c4d.rar的子字符串。
因此,这些文件名应该获取以下Tags
filename1_c4d.rarcinema4d
text122_octane.c4dcinema4d, octane
texture1.pngtextures
texture2.pngtextures
因此,最终查询的结果应该是那些Tags(没有重复的):
cinema4d, octane, textures
备注:解释一下这是为了什么:
用户可以上传一个.rar文件,我想根据.rar文件中的文件名自动分配标签。
我希望我的目标很明确。如果你有什么不明白的地方,请告诉我。

最佳答案

需要使用聚合管道来比较alias is input array的子字符串

db.t5.aggregate([
        {$addFields :{tags: tags, matches : {$map:{input: "$aliases", as: "a", in: {$map : {input: tags, as: "i", in: {$gte:[{$indexOfCP:["$$i", "$$a"]},0]}}}}}}},
        {$addFields: {matchez :{$reduce : {input : "$matches", initialValue : [], in: { $concatArrays: [ "$$value", "$$this" ] }}}}},
        {$match: {"matchez" : {$in : [true]}}},
        {$group : {_id: null, names : {$addToSet : "$name"}}}
    ])

结果
{ "_id" : null, "names" : [ "octane", "textures", "cinema4d" ] }

样品收集
> db.t5.find()
{ "_id" : "id1", "name" : "cinema4d", "aliases" : [ ".c4d", "c4d", "cinema4d" ] }
{ "_id" : "id2", "name" : "octane", "aliases" : [ "octane" ] }
{ "_id" : "id3", "name" : "textures", "aliases" : [ "texture", "textures" ] }
{ "_id" : "id4" }
{ "_id" : "id5" }
{ "_id" : "id6" }

输入标记
> tags
[
        "filename1_c4d.rar",
        "text122_octane.c4d",
        "texture1.png",
        "texture2.png"
]

结果
> db.t5.aggregate([{$addFields :{tags: tags, matches : {$map:{input: "$aliases", as: "a", in: {$map : {input: tags, as: "i", in: {$gte:[{$indexOfCP:["$$i", "$$a"]},0]}}}}}}}, {$addFields: {matchez :{$reduce : {input : "$matches", initialValue : [], in: { $concatArrays: [ "$$value", "$$this" ] }}}}}, {$match: {"matchez" : {$in : [true]}}}, {$group : {_id: null, names : {$addToSet : "$name"}}}])
{ "_id" : null, "names" : [ "octane", "textures", "cinema4d" ] }
>

关于node.js - Mongoose查找匹配输入子串的所有文档,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53890895/

10-09 20:44