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 /