搜尋

首頁  >  問答  >  主體

html5 - 新手問:為什麼form表單的post請求 路由處理不了

前台 ws.html

<form method="post">  
    <p class="form-group" >
            <lable for="name">手机号</lable>
            <input type="text" class="form-control" id="name" placeholder="请输入你的手机号" name="pnum">
            <lable for="price">QQ号</lable>
            <input type="text" class="form-control" id="price" placeholder="请输入你的qq号" name="qnum">
            <lable for="num">邮箱</lable>
            <input type="text" class="form-control" id="num" placeholder="请输入你的邮箱" name="email">          
    </p>
    <button type="submit" class="btn btn-default">提交</button>
</form>

路由 ws.js

router.post('/ws',function(req,res,next){
    console.log(req,body);
    res.render('suc',{
       message : "恭喜你完善成功",
    })
})

#
迷茫迷茫2733 天前812

全部回覆(1)我來回復

  • 巴扎黑

    巴扎黑2017-06-10 09:51:12

    根本就沒有進這個路由吧,你的 log 資訊輸出了嗎?

    你的

    沒有 action,預設應該 post 到了網站首頁。

    回覆
    0
  • 取消回覆