Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
983 views
in Technique[技术] by (71.8m points)

express - Getting `Cannot GET /todos`

I've created a simple Express app and am trying to use Postman to test my POST route. I continually get the Cannot GET /todos error. Any suggestions on the below code?

const express = require('express');
const app = express();
const cors = require('cors');
const pool = require('./db');


//middleware
app.use(cors());
app.use(express.json())

//routes
app.post("/todos", async (req, res) => {
   try {
        console.log(req.body);
   } catch (error) {
      console.log(error.message);
   }
});

app.listen(3050, () => {
    console.log(`Listening on port 3050`);
})
question from:https://stackoverflow.com/questions/65895093/getting-cannot-get-todos

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It looks like you are trying to make a GET request to a POST route. You will need to change the HTTP verb to POST by clicking the dropdown to the left of the request URL.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...