我创建了一个带有名称和描述字段的类别集合。即
Categories = new Meteor.Collection('categories');
CategoriesSchema = new SimpleSchema({
translation:{
type: [Object]
},
"translation.$": {
type: Object
},
"translation.$.name": {
type: String
},
"translation.$.description": {
type: String
}
});
Categories.attachSchema( CategoriesSchema );
我需要创建一个文本索引来按名称或描述查找类别。 我看到Meteor js: Create index in user collection,但不是我的需要,我也试过
Meteor.startup(function () {
Categories._createIndex(
{ 'translation.$.name' : "text" },
{ 'translation.$.description' : "text" },
{ default_language: "english" }
);
});
我读过关于在流星中创建索引但是它不起作用或者我做错了吗?任何帮助将不胜感激。
答案 0 :(得分:1)
您使用的是错误的API。
您应该在收藏中致电_ensureIndex
。