search

Home  >  Q&A  >  body text

node.js - nodejs中如何跳过登陆页直接进入某个页面?

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

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

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

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

res.render('login');

})

阿神阿神2787 days ago384

reply all(2)I'll reply

  • 怪我咯

    怪我咯2017-04-17 16:16:44

    should be put in the express section

    reply
    0
  • 怪我咯

    怪我咯2017-04-17 16:16:44

    Just make an automatic login function

    reply
    0
  • Cancelreply