express 接口转发拦截不到直接报404什么问题?
axios.get(`http://localhost:3000/api/annotationDetail`).then( res => {
console.log('0000000',res);
});
router.get('/api/annotationDetail'),(req,res)=>{
const annotationID=req.param.annotationId;
console.log('11111111111111');
MongoClient.connect(mongoURL, function(err, db) {
if (err) throw err;
const dbo = db.db("path-cloud");
dbo.collection('AnnotationFileGroups').findOne({_id: groupId}, (e, result) => {
if(e) throw e;
else {
res.json({
code: 200,
data: '111',
});
}
})
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论