# in front of tags and changed index of messages
This commit is contained in:
parent
156ec36d1e
commit
8c0d3dc669
@ -114,8 +114,8 @@ const CreateMsgRouter = {
|
||||
|
||||
function get_insert_tag(id){
|
||||
$.ajax({ url: "api/tag/"+id, method: "GET" }).done(function (tag) {
|
||||
data.push(tag.name);
|
||||
console.log("it worked!");
|
||||
data.push("#" + tag.name);
|
||||
console.log("Array:"+this.data);
|
||||
}).fail(function (e, f, g) {
|
||||
console.log("cannot load " + id + ".json: " + e + f + g);
|
||||
})
|
||||
|
@ -184,7 +184,7 @@ const dbs = {
|
||||
_comment: "" },
|
||||
//createtime: { type: Date, default: Date.now },
|
||||
});
|
||||
messageSchema.index({ tag:'text', subject:'text', message:'text', user:'text' });
|
||||
messageSchema.index({ "$**":'text' });
|
||||
model.Messages = common.mongoose.model('messages', messageSchema);
|
||||
model.Messages._list = [ "" ];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user