新手求问:关于 express中类似 checkLogin 方法,应该放在哪个位置比较好?
发布于 7个月前 作者 beyondalbert 297 次浏览

当前对 routes 分了文件:

index.js
users.js
.
.

在多个 routes 文件中都需要进行 checkLogin, 新手求问这种类似的函数该怎么放置,然后怎么使用比较好?

4 回复

放在你要所有验证的上面 比如user.js user1.js需要验证 checkLogin.js user.js user1.js 如果没记错的话。

当然写在一个中间件里啊 这样使用吧 第一个是你的mid.js 第二个在里的路由文件里面

exports.checkLogin = function (req , res , next) {
    //do something
    next()
}
app.post('your url',mid.checkLogin,others.method);

@struCoder 有没有实际的代码可以借鉴呢?如果是多个类似checkLogin的函数是直接写一个类还是分多个mid.js?先谢过啦

回到顶部