Express 中的参数
在 Express 中, 路由参数 是从 URL 开头的部分派生的值 :
. 的 _ req.params
property 是 Express 存储 URL 中命名部分的值的地方。
const app = require('express')();
// `:userId` is a route parameter. Express will capture whatever
// string comes after `/user/` in the URL and store it in
// `req.params.userId`
app.get('/user/:userId', (req, res) => {
req.params; // { userId: '42' }
res.json(req.params);
});
const server = await app.listen(3000);
// Demo of making a request to the server
const axios = require('axios');
const res = await axios.get('http://localhost:3000/user/42');
res.data; // { userId: '42' }
路由参数也称为 URL 参数。
查询字符串参数
查询字符串参数 是 Express 中另一种常用的参数类型。 URL的 查询字符串 部分是问号之后的 URL 部分 ?
.
默认情况下,Express 解析查询字符串并将解析结果存储在 请求对象 上 req.query
:
const app = require('express')();
app.get('*', (req, res) => {
req.query; // { a: '1', b: '2' }
res.json(req.query);
});
const server = await app.listen(3000);
// Demo of making a request to the server
const axios = require('axios');
const res = await axios.get('http://localhost:3000/?a=1&b=2')
res.data; // { a: '1', b: '2' }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论