📅  最后修改于: 2022-03-11 15:04:23.493000             🧑  作者: Mango
app.get('/api/all', (req,res) =>{
Model.find({})
.then(model=> {
res.json(model)
}).catch(error=>{
res.json(error)
}
})
})