私はこのように見えるsimpleschemaであるコレクションを持っています
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 Text Search 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 用語の検索を返します。しかし、私が達成したいのは、 vendorNameとvendorDescriptionが検索される前に、コレクションの結果をvendorCategories.nameに絞り込むことです。
読んでくれてありがとう。