我在我的应用程序中使用sequelizejs,nodejs。我知道这将检查inbuild,但我想手动检查if()条件。 以下是一些网址路径
/user
/user/11d9b6130159 => user/:id
/user/11d9bdfg0159/sample => user/:id/sample
我想要的是,有中间件,必须在应用程序路径中查看当前网址,如
if(url.parse(req.url).path === "/user"){
//some action do
}
但我没有留下网址。请提出解决方法。感谢
答案 0 :(得分:0)
如果你真的想手动进行URL解析,那么aproach可能是这样的:
编辑:根据您的评论,我修改了示例代码(超过3个级别)。您可以根据需要轻松扩展它。
const url = require('url');
const path = ctx.request.href;
const pathName = url.parse(path).pathname;
const pathNameParts = pathName.split('/'');
if (pathNameParts && pathNameParts[1] && pathNameParts[1] === 'user') {
if (pathNameParts[2]) {
const id = pathNameParts[2]; // :id is now defined
if (pathNameParts[3] && pathNameParts[3] === 'sample') {
if (pathNameParts[4]) {
const id2 = pathNameParts[4]; // :id2 is now defined
if (pathNameParts[5] && pathNameParts[5] === 'disable') {
// do some action for /user/:id/sample/:id2/disable
} else {
// do some action for /user/:id/sample/:id2
}
} else {
// do some action for /user/:id/sample
}
} else {
// do some action for /user/:id
}
} else {
// do some action for /user
}
}
所以我只会这样做,如果你真的想自己做解析。否则使用快递路由器或koa路由器之类的东西。使用快速路由器就像:
app.use('/user/:id', function (req, res, next) {
console.log('ID:', req.params.id);
next();
});