I was working with Express and node. Using Fetch to POST some data to server. I'm getting 405 err. I havent got any idea on how to solve this

I was working with Express and node. Using Fetch to POST some data to server. I’m getting 405 err. I havent got any idea on how to solve this.
enter image description here

enter image description here
enter image description here

>Solution :

Just fetch node app from "app.listen" by editing:

fetch('api', options)

to

fetch('http://localhost:3000/api', options)

on index2.html on line 27

Leave a Reply