检查nedb中是否存在某一行

时间:2018-01-07 20:16:26

标签: javascript node.js nedb

我已经四处寻找试图找到解决方案,但我似乎无法找到它

我试图看看我的nedb数据库中是否存在某一行,如果它不存在则插入一些内容但是如果它确实存在那么只需沿着这里移动就是我试过的

function newAgent(pcName){
    socket.broadcast.emit('newAgent', pcName)
    agentList.find({agentName: { $nin: pcName}}, function(err, docs) {  

    agentList.insert({agentName: pcName}, function (err) {});
});

}

现在我可能会做一些愚蠢的事情,但我对nedb不熟悉所以我不知道该使用什么

1 个答案:

答案 0 :(得分:0)

尝试这样的事情怎么样

@Highlight(prefix = "<highlight>", postfix = "</highlight>", fields = {"title"})