node.js - nodejs中如何跳过登陆页直接进入某个页面?
阿神
阿神 2017-04-17 16:14:44
0
2
376

我在想能否把登陆信息写死,然后 判断登陆信息正确就跳转到其他页面去?本人是新手,请多指点

router.use('/consulSenderSMS', function (req, res, next) {//访问这个的时候不想去登陆页

    res.render('consulSenderSMS');
    });

router.use("/", function (req, res, next) {

res.render('login');

})

阿神
阿神

闭关修行中......

reply all(2)
刘奇

should be put in the express section

刘奇

Just make an automatic login function

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template