使用mongodb在jquery中的自动完成搜索中显示文本

时间:2018-01-21 18:36:07

标签: javascript jquery node.js mongodb

我有以下架构:

var Person = new Schema({
    about: { // the array comes from front end
        name: {
            type: String
        },
        places: [{
            type: String
        }]
    },
});

...给定值为:

name : 'ram',
places : ['delhi','agra']

在自动填充搜索中,当我输入'del'时,会显示'delhi,agra'

当我输入'del'时,如何让它仅显示'delhi'

0 个答案:

没有答案