搜尋

首頁  >  問答  >  主體

node.js+express 怎么在路由中刷新当前页

黄舟黄舟2786 天前409

全部回覆(4)我來回復

  • 大家讲道理

    大家讲道理2017-04-17 16:13:52

    https://github.com/FengShangW...
    一個簡單的登陸註冊加聊天應用程式(node + express + mongodb),可以參考

    回覆
    0
  • 大家讲道理

    大家讲道理2017-04-17 16:13:52

    res.redirect(xx)

    回覆
    0
  • ringa_lee

    ringa_lee2017-04-17 16:13:52

    最簡單的就是為 form 增加 onsubmit 參數,非同步提交

    <script>
        function PostData() {
            $.ajax({
                type: "POST",
                url: "post.go",
                data : "",
                success: function(msg) {
                }
            });
            return false;
        }
    </script>
    <form onsubmit="return PostData()">
        <input type="text" value="">
        <input type="submit">
    </form>
    

    回覆
    0
  • PHP中文网

    PHP中文网2017-04-17 16:13:52

    可以在ajax裡面請求成功後執行location.reload()

    回覆
    0
  • 取消回覆