Browse Source

# in front of tags and changed index of messages

master
Senta Mandutz 4 years ago
parent
commit
8c0d3dc669
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      public/routes/createMessage.js
  2. 1
    1
      server/dbs.js

+ 2
- 2
public/routes/createMessage.js View File

@@ -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);
})

+ 1
- 1
server/dbs.js View File

@@ -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…
Cancel
Save