Я использую среду express.js, и маршрутизатор работает локально, но не работает
router.route(`/server/template/:id`)
.delete(test.delete)
.get(temp.get);
router.route(`/server/template`)
.post(test.post)
.get(test.get);
Я получаю следующее сообщение об ошибке:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>404 Not Found</title>
<h1>Not Found</h1>
<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>