我使用Webstorm。我在页面6中使用“获取”方法准备了一个表单。但是app.get无法正常工作。没有任何错误。似乎APP.JS会忽略。
在PAGE6.EJS
中<form action="/page6" method="get" >
<input type="email" class="form-control" id="to">
<button type="submit" class="btn btn-success">Send</button>
</form>
在APP.JS中
app.get("/page6",(res,req)=>{
console.log("Ok.Done.");
});
答案 0 :(得分:0)
在PAGE6.JS中
import random
import easygui
def flip_coin():
a = random.choice(["Heads", "Tails"])
easygui.msgbox(a)
easygui.msgbox("Ready?")
flip_coin()
我认为get方法是由路由器页面的JS处理的,而不是APP.JS。可能与网络风暴属性有关。