TypeError: db.collection is not a function

后端 未结 18 2464
青春惊慌失措
青春惊慌失措 2020-11-27 03:09

I am trying to post data to database that I have created on mLab and I am getting this error but I don\'t know whats going wrong.I also have read previously asked question o

18条回答
  •  春和景丽
    2020-11-27 03:20

    I've simple solution:

    note_routes.js

    db.collection('notes').insert(note, (err, result) => {
    

    replace

    db.db().collection('notes').insert(note, (err, result) => {
    

提交回复
热议问题