Node.js(express framework):Post方法不起作用



我可以使用Get方法运行Get方法和HTML表单,也可以在浏览器上看到,但当我单击提交按钮时,没有发生任何事情,没有任何错误。它显示了相同的HTML表单页面。

HTML code:
<!DOCTYPE html>enter code here
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Calculator</title>
</head>
<body>
<form action="/" method="post">
<h1>Calculator</h1>
<input type="text" name="num1" placeholder="Number 1">
<input type="text" name="num2" placeholder="Number 2">
<button action="/" type="button" name="button">Submit</button>
</form>
</body>
</html>

节点Js代码:

//jshint esversion:6
const express=require("express");
const app=express();
app.get("/", function(req,res){
res.sendFile( __dirname+"/index.html");
});
app.post("/", function(req,res){
res.send("Thanks for post");
});
app.listen(3000, function(){
console.log("Server Started On Port 3000");
});

您的按钮类型应该是Submit

<button type="submit" value="Submit">Calculator</button>

最新更新