Home > Q&A > body text
我在想能否把登陆信息写死,然后 判断登陆信息正确就跳转到其他页面去?本人是新手,请多指点
router.use('/consulSenderSMS', function (req, res, next) {//访问这个的时候不想去登陆页
res.render('consulSenderSMS'); });
router.use("/", function (req, res, next) {
res.render('login');
})
怪我咯2017-04-17 16:16:44
should be put in the express section
express
Just make an automatic login function