我知道如何获取这样的查询的参数:
app.get('/sample/:id', routes.sample);
在这种情况下,我可以使用req.params.id
获取参数(例如2
中的/sample/2
)。
但是,对于/sample/2?color=red
这样的网址,如何访问变量color
?
我试过了req.params.color
,但它没有用。
答案 0 :(得分:636)
因此,在查看express reference之后,我发现req.query.color
会返回我正在寻找的值。
req.params是指URL中带有“:”的项目,req.query是指与“?”相关联的项目
示例:
GET /something?color1=red&color2=blue
然后在express中,处理程序:
app.get('/something', (req, res) => {
req.query.color1 === 'red' // true
req.query.color2 === 'blue' // true
})
答案 1 :(得分:75)
使用req.query,获取路由中查询字符串参数的值。 请参阅req.query。 假如在路由http://localhost:3000/?name=satyam中你想获得name参数的值,那么你的'Get'路由处理程序将是这样的: -
app.get('/', function(req, res){
console.log(req.query.name);
res.send('Response send to client::'+req.query.name);
});
答案 2 :(得分:63)
更新: req.param()
现已弃用,因此请继续使用此答案。
您的回答是首选方法,但我想我会指出您还可以使用req.param(parameterName, defaultValue)
访问所有网址,帖子和路由参数。
在你的情况下:
var color = req.param('color');
来自快速指南:
按以下顺序执行查找:
- req.params
- req.body
- req.query
请注意,指南中说明了以下内容:
应该直接访问req.body,req.params和req.query 为了清晰起见 - 除非你真的接受每个对象的输入。
然而,在实践中,我实际上发现req.param()
足够清晰,并且使某些类型的重构更容易。
答案 3 :(得分:42)
@ Zugwait的回答是正确的。不推荐使用req.param()
。您应该使用req.params
,req.query
或req.body
。
但只是为了更清楚:
req.params
将仅填充路线值。也就是说,如果您有/users/:id
之类的路线,则可以id
或req.params.id
访问req.params['id']
。
req.query
和req.body
将填充所有参数,无论它们是否在路线中。当然,查询字符串中的参数将在req.query
中提供,帖子正文中的参数将在req.body
中提供。
因此,回答您的问题,因为color
不在路线中,您应该可以使用req.query.color
或req.query['color']
来获取问题。
答案 4 :(得分:38)
查询字符串和参数不同。
您需要在单个路由网址
中使用它们请检查以下示例可能对您有用。
app.get('/sample/:id', function(req, res) {
var id = req.params.id; //or use req.param('id')
................
});
获取传递第二段的链接是您的身份示例:http://localhost:port/sample/123
如果您遇到问题,请使用'?'将传递变量用作查询字符串操作
app.get('/sample', function(req, res) {
var id = req.query.id;
................
});
获取此示例的链接:http://localhost:port/sample?id=123
两者都在一个例子中
app.get('/sample/:id', function(req, res) {
var id = req.params.id; //or use req.param('id')
var id2 = req.query.id;
................
});
答案 5 :(得分:14)
快速手册说您应该使用req.query来访问QueryString。
// Requesting /display/post?size=small
app.get('/display/post', function(req, res, next) {
var isSmall = req.query.size === 'small'; // > true
// ...
});
答案 6 :(得分:5)
const express = require('express')
const bodyParser = require('body-parser')
const { usersNdJobs, userByJob, addUser , addUserToCompany } = require ('./db/db.js')
const app = express()
app.set('view engine', 'pug')
app.use(express.static('public'))
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json())
app.get('/', (req, res) => {
usersNdJobs()
.then((users) => {
res.render('users', { users })
})
.catch(console.error)
})
app.get('/api/company/users', (req, res) => {
const companyname = req.query.companyName
console.log(companyname)
userByJob(companyname)
.then((users) => {
res.render('job', { users })
}).catch(console.error)
})
app.post('/api/users/add', (req, res) => {
const userName = req.body.userName
const jobName = req.body.jobName
console.log("user name = "+userName+", job name : "+jobName)
addUser(userName, jobName)
.then((result) => {
res.status(200).json(result)
})
.catch((error) => {
res.status(404).json({ 'message': error.toString() })
})
})
app.post('/users/add', (request, response) => {
const { userName, job } = request.body
addTeam(userName, job)
.then((user) => {
response.status(200).json({
"userName": user.name,
"city": user.job
})
.catch((err) => {
request.status(400).json({"message": err})
})
})
app.post('/api/user/company/add', (req, res) => {
const userName = req.body.userName
const companyName = req.body.companyName
console.log(userName, companyName)
addUserToCompany(userName, companyName)
.then((result) => {
res.json(result)
})
.catch(console.error)
})
app.get('/api/company/user', (req, res) => {
const companyname = req.query.companyName
console.log(companyname)
userByJob(companyname)
.then((users) => {
res.render('jobs', { users })
})
})
app.listen(3000, () =>
console.log('Example app listening on port 3000!')
)
答案 7 :(得分:-1)
我开始在express上使用我的一些应用程序的一个很好的技术是创建一个对象,它合并了快递请求对象的查询,参数和正文字段。
//./express-data.js
const _ = require("lodash");
class ExpressData {
/*
* @param {Object} req - express request object
*/
constructor (req) {
//Merge all data passed by the client in the request
this.props = _.merge(req.body, req.params, req.query);
}
}
module.exports = ExpressData;
然后在您的控制器主体或快递请求链范围内的任何其他位置,您可以使用以下内容:
//./some-controller.js
const ExpressData = require("./express-data.js");
const router = require("express").Router();
router.get("/:some_id", (req, res) => {
let props = new ExpressData(req).props;
//Given the request "/592363122?foo=bar&hello=world"
//the below would log out
// {
// some_id: 592363122,
// foo: 'bar',
// hello: 'world'
// }
console.log(props);
return res.json(props);
});
这使得“钻研”用户可能已经发送了他们的请求的所有“自定义数据”变得非常方便。
注意强>
为什么选择'道具'字段?因为这是一个简化的片段,我在许多API中使用此技术,我还将身份验证/授权数据存储到此对象,例如下面的示例。
/*
* @param {Object} req - Request response object
*/
class ExpressData {
/*
* @param {Object} req - express request object
*/
constructor (req) {
//Merge all data passed by the client in the request
this.props = _.merge(req.body, req.params, req.query);
//Store reference to the user
this.user = req.user || null;
//API connected devices (Mobile app..) will send x-client header with requests, web context is implied.
//This is used to determine how the user is connecting to the API
this.client = (req.headers) ? (req.headers["x-client"] || (req.client || "web")) : "web";
}
}