Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了 Node API,并且已经在 Heroku 中上传,但是当我想打开任何其他路由器时,它会显示一些错误,例如应用程序错误。即使我必须添加 Procfile,但在下面出现问题应用程序错误我已经看到“heroku logs --tail”我遵循了相同的命令,但在错误和 H12 我得到了
谁能帮帮我谢谢 adv
我想你忘记了你的所需参数aboutus.find(),这是一个对象。如果您要查找所有查询,则需要在第一个参数上提供空对象,试试这个
aboutus.find()
aboutus.find({}, (err, data1) => { if (err) throw err; res.render('aboutus_edit.ejs', { aboutus: data1 }); })
参考: http: //mongoosejs.com/docs/api.html#model_Model.find