suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript – So löschen Sie eine Nachricht in MongoDB mit js

  1. mongoDB speichert Artikel

  2. Eine Nachricht hat Zeit, Titel, Inhalt, Herausgeber und _ID

  3. Erreicht mit JavaScript

  4. Verwendung des Express-Frameworks von node.js

  5. Bitte posten Sie den Code. Vielen Dank

给我你的怀抱给我你的怀抱2719 Tage vor730

Antworte allen(2)Ich werde antworten

  • 世界只因有你

    世界只因有你2017-06-08 11:04:02

    敢问楼主用的是什么中间件操作mongodb呢?这里我就按mongoose的写法来吧:

    //因为不清楚楼主想要通过什么条件进行删除,通过id肯定不靠谱
    //这里通过作者和文章标题进行查询并删除,使用的是findOne值查询一个
    Passage.findOneAndRemove({author:"LiMing",title:"helloworld"}).exec();

    Antwort
    0
  • 代言

    代言2017-06-08 11:04:02

    db.person.remove(“name”:"ziling")


    db.collection("tb2").insert([{"name":"wilson001","age":21},{"name":"wilson002"},{"age":22}],function(err,result){})

    db.collection("tb2").remove({"name":"wilson002"},function(err,result){});

    db.collection("tb2").update({"name":"wilson001"},{$set:{"age":100}},function(err,result){});

    db.collection("tb2").find({"name":"wilson001"}).toArray(function(err,result){});

    Antwort
    0
  • StornierenAntwort