通过req.query [myParam]和req.params.myParam获取QUERY_STRING参数之间有区别吗?如果是的话,我什么时候应该使用哪个?
感谢。
答案 0 :(得分:200)
鉴于此路线
app.get('/hi/:param1', function(req,res){} );
并给出此URL
http://www.google.com/hi/there?qs1=you&qs2=tube
你将拥有:
REQ。的查询强>
{
qs1: 'you',
qs2: 'tube'
}
REQ。的 PARAMS 强>
{
param1: 'there'
}
答案 1 :(得分:99)
req.params
包含路由参数(在网址的路径部分中),req.query
包含网址查询参数(在网址中的?
之后)。
您也可以使用req.param(name)
在两个地方(以及req.body
)查找参数,但现在不推荐使用此方法。
答案 2 :(得分:7)
您现在应该可以使用点表示法来访问查询。
如果您想访问,请说明您在/checkEmail?type=email&utm_source=xxxx&email=xxxxx&utm_campaign=XX
收到 GET 请求,并且您想要提取所使用的查询。
var type = req.query.type,
email = req.query.email,
utm = {
source: req.query.utm_source,
campaign: req.query.utm_campaign
};
Params 用于接收请求的自定义参数,如(示例):
router.get('/:userID/food/edit/:foodID', function(req, res){
//sample GET request at '/xavg234/food/edit/jb3552'
var userToFind = req.params.userID;//gets xavg234
var foodToSearch = req.params.foodID;//gets jb3552
User.findOne({'userid':userToFind}) //dummy code
.then(function(user){...})
.catch(function(err){console.log(err)});
});
答案 3 :(得分:3)
假设您这样定义了路线名称:
https://localhost:3000/user/:userid
它将变为:
https://localhost:3000/user/5896544
在这里,如果您要打印: request.params
{
userId : 5896544
}
如此
request.params.userId = 5896544
所以 request.params 是包含命名路由属性的对象
和 request.query 来自URL中的查询参数 例如:
https://localhost:3000/user?userId=5896544
request.query
{
userId: 5896544
}
如此
request.query.userId = 5896544
答案 4 :(得分:0)
我想提一个关于req.query
的重要说明,因为当前我正在基于req.query
进行分页功能,并且有一个有趣的示例向您展示...
示例:
// Fetching patients from the database
exports.getPatients = (req, res, next) => {
const pageSize = +req.query.pageSize;
const currentPage = +req.query.currentPage;
const patientQuery = Patient.find();
let fetchedPatients;
// If pageSize and currentPage are not undefined (if they are both set and contain valid values)
if(pageSize && currentPage) {
/**
* Construct two different queries
* - Fetch all patients
* - Adjusted one to only fetch a selected slice of patients for a given page
*/
patientQuery
/**
* This means I will not retrieve all patients I find, but I will skip the first "n" patients
* For example, if I am on page 2, then I want to skip all patients that were displayed on page 1,
*
* Another example: if I am displaying 7 patients per page , I want to skip 7 items because I am on page 2,
* so I want to skip (7 * (2 - 1)) => 7 items
*/
.skip(pageSize * (currentPage - 1))
/**
* Narrow dont the amound documents I retreive for the current page
* Limits the amount of returned documents
*
* For example: If I got 7 items per page, then I want to limit the query to only
* return 7 items.
*/
.limit(pageSize);
}
patientQuery.then(documents => {
res.status(200).json({
message: 'Patients fetched successfully',
patients: documents
});
});
};
您会注意到+
和req.query.pageSize
前面的req.query.currentPage
签名
为什么?如果在这种情况下删除+
,则会收到错误消息,并抛出该错误消息,因为我们将使用无效的类型(错误消息“ limit”字段必须为数字)。
重要:默认情况下,如果您从这些查询参数中提取内容,则该内容将始终是字符串,因为它来自URL,并且被视为文本。
如果我们需要使用数字,并将查询语句从文本转换为数字,则只需在语句前面添加一个加号即可。
答案 5 :(得分:0)
我只想补充一点,如果您来自 axios
,(GET/POST),您可以通过配置获得 query/url params
(使用 req.query
可读):
axios.post('/users', {...data}, {
headers: {...anyHeaders},
params: {uid: `${uid}`}
})
并且您通过路径使 path/route variables
(用 req.params
可读)可用:
axios.get(`/users/${uid`}, {
headers: {...anyHeaders}
})
我还要补充一点,用于读取服务器上查询参数的名称必须与来自客户端的名称相匹配。如果路径/路由的那部分可用(基本上是替换 - 有点像 react-router
是如何做到的:/path/:variable
).