我使用expressjs设置服务器。
我使用' ALL'处理所有请求的方法,但现在它无法在服务器上使用POST。
它适用于GET,GET和POST都适用于localhost。
eval
错误消息只是“无法发布/拉出”。
答案 0 :(得分:1)
app.post('/', function (req, res) {
res.send('POST request to homepage');
});
答案 1 :(得分:0)
我解决了。
我无法重启服务器并在本地和服务器之间同步代码。