Thứ tự của phần mềm trung gian trong sysaccess.js
của bạn bộ định tuyến sai.
Ví dụ:
// "GET /sysaccess/test" will be processed by this middleware
router.get('/:id', (req, res) => {
let id = req.params.id; // id = "test"
Foo.findById(id).exec().then(() => {}); // This line will throw an error because "test" is not a valid "ObjectId"
});
router.get('/test', (req, res) => {
// ...
});
Giải pháp 1: làm cho những phần mềm trung gian cụ thể hơn ra đời trước những phần mềm trung gian chung chung hơn.
Ví dụ:
router.get('/test', (req, res) => {
// ...
});
router.get('/:id', (req, res) => {
// ...
});
Giải pháp 2: sử dụng next
để chuyển yêu cầu đến phần mềm trung gian tiếp theo
Ví dụ:
router.get('/:id', (req, res, next) => {
let id = req.params.id;
if (id === 'test') { // This is "GET /sysaccess/test"
return next(); // Pass this request to the next matched middleware
}
// ...
});
router.get('/test', (req, res) => {
// ...
});