页面重定向到nodejs中的另一个html页面

时间:2018-11-29 18:39:03

标签: javascript node.js mongodb

要求是单击按钮(type = button)从'index.html'重定向到'userdetails.html'页面

我在index.html中有3种形式(每种形式都有不同的用途) 所有人都有method=Post

在第二种形式中,我有一个带有type=buttonid=userdetails以及onclick="sendDetails()"

的按钮

现在同一页面上的功能:

function sendDetails(){
    $.ajax({
        method: "GET",
        url: "/newColl",
        success: function(data) {
            $('#form2').attr('action', '/userdetails');
        }

现在我有index.js页面,该页面具有以下功能:

var createGroup = function(//<manipulation on mongodb>)

router.get('newColl', function(req, res, next){
    // mongo connection and calling createGroup function
    // this is working fine.
   client.close()
});

router.post('/userdetails', function(req, res, next) {
    res.redirect('userdetails.html');
}

我尝试使用res.redirectres.sendFileres.renderwindow.location.href(in html),但徒劳无功。

请任何人指导。

谢谢

0 个答案:

没有答案