作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的应用程序中使用 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
}
最佳答案
如果你真的想手动进行 URL 解析,那么方法可能是这样的:
编辑:根据您的评论,我修改了示例代码(超过 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
}
}
app.use('/user/:id', function (req, res, next) {
console.log('ID:', req.params.id);
next();
});
关于node.js - 如何检查应用程序中是否存在 req.url 路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50644806/
我是一名优秀的程序员,十分优秀!