我有使用Laravel护照api(localhost:8000)的Laravel项目,还有我的项目epxressjs(localhost:3000),如何使用Laravel护照来表达中间件。我认为,在expressjs(localhost:3000)中的每个使用路由之后,我都会调用api laravel护照(localhost:8000)。
noteRouter.get('/:id', Should I call laravel passport api here ? , (req, res) => {
NoteService.getDetail(req.params.id)
.then(post => res.send({ success: true, data: post }))
.catch(res.onError);
});