为什么我的获取请求有效,但发帖请求却无效?

时间:2020-08-24 12:45:44

标签: javascript express

const express = require('express')

const app = express()

app.listen(4000)

app.post('/items', function (req, res) {
res.send('POST request to the homepage')
})

app.get('/items', function (req, res) {
  res.send('gett request to the homepage')
})

这是代码,总是,我的get请求可以工作,但是我的post请求给出了一个错误:无法GET /

0 个答案:

没有答案