如何检查每个请求在Express JS中都有cookie

时间:2018-11-28 03:30:06

标签: javascript node.js express

我正在使用react和node构建一个Crud应用程序,因此我需要检查每个请求是否存在cookie。

app.all("*", (req,res) => {
 // cookie doesn't exist redirect to login
 if(cookieExist(req.headers.cookie)){
   // how to pass to the next layer ? load the routes below code etc..
  next(); 
 }else{
    res.redirect("/login")
  }
})

const routes = require("./routes/route");

app.use(bodyParser.json());
app.use(cors());

app.use("/apiServices", apiRoutes)

我在这里缺少什么,得到未定义的next()。

1 个答案:

答案 0 :(得分:1)

将next定义为参数

app.all("*", (req,res, next) => {
 // cookie doesn't exist redirect to login
 if(cookieExist(req.headers.cookie)){
   // how to pass to the next layer ? load the routes below code etc..
  next(); 
 }else{
    res.redirect("/login")
  }
})