Sep 4, 2018 · 1 min read
Hi, Kevin! I only get this error message if the specific HTTP method is not defined. Say, maybe in your products.route.js, you typed in
router.get('/create', product_controller.product_create);instead of
router.post('/create', product_controller.product_create);Hope this helps!