0

我有一个简单模式的集合,看起来有点像这样

VendorCategories = new SimpleSchema({
    name: {
        type: String,
        label: "Category"
    },
    slug: {
        type: String,
        label: "Slug"
    }
});

VendorsSchema = new SimpleSchema({
    vendorName: {
        type: String,
        label: "Vendor Name",
        min: 3,
    },
    vendorCategory: {
        type: VendorCategories,
    },
    vendorDescription: {
        type: String,
        label: "Vendor Description",
        min: 45,
    },
});

我有一个这样的集合的 mongo 索引设置。

Vendors._ensureIndex({
  'vendorName': 'text',
  'vendorDescription': 'text',
  'VendorCategories.name': 'text',
});

目前,这是我使用 Mongo 文本搜索https://docs.mongodb.org/v3.0/reference/operator/query/text/通过此索引搜索的出版物看起来像

Meteor.publish('searchVendors', function(query) {
    if (query) {
        return Vendors.find({
            $text: {
                $search: query
            }
        }, {
            fields: {
                score: {
                    $meta: 'textScore'
                }
            },
            sort: {
                score: {
                    $meta: 'textScore'
                }
            }
        });
    } else {
        return Vendors.find();
    }
});

我的辅助方法看起来像这样。

vendorSearchResults: function() {
    var category = FlowRouter.getQueryParam("category");//narrow by this first
    var terms = FlowRouter.getQueryParam("terms");

    Meteor.subscribe("searchVendors", terms);
    if (terms) {
        return Vendors.find({}, { sort: [["score", "desc"]] });
    } else {
        return Vendors.find({});
    }
}

目前,这将返回对与供应商名称和描述匹配的所有var 术语的搜索。但我想要实现的是首先将收集结果缩小到vendorCategories.name,然后再搜索vendorNamevendorDescription

对此的任何帮助将不胜感激,感谢您的阅读。

4

1 回答 1

1

$text运算符可以与其他匹配条件结合使用:

    return Vendors.find({
        "VendorCategories.name": "Acme Corporation",
        $text: {
            $search: query
        }
    }, 
于 2015-12-28T21:08:12.943 回答