expressjsHow can I use query parameters in an Express.js application?
Query parameters are used to filter and sort data in an Express.js application. To use query parameters, first define a route in the Express.js application that will accept the query parameters. For example:
app.get('/users', (req, res) => {
// code to handle query parameters
});
The req
object contains the query parameters in the query
property. For example, if the route is called with /users?name=John&age=20
, then req.query
will contain the object {name: "John", age: 20}
.
The code to handle the query parameters can then use the req.query
object to filter and sort the data. For example, to find all users with the name John
and age 20
:
const users = [
{name: "John", age: 20},
{name: "Bob", age: 25},
{name: "John", age: 30},
];
const filteredUsers = users.filter(user =>
user.name === req.query.name && user.age === req.query.age
);
// filteredUsers = [{name: "John", age: 20}]
Code explanation
app.get('/users', (req, res) => { ... })
: Defines a route that accepts query parameters.req.query
: Contains the query parameters.users.filter(user => ...)
: Filters the users array based on the query parameters.
Helpful links
More of Expressjs
- How do I find Express.js tutorials on YouTube?
- How do I disable CORS in Express.js?
- How can I use express-zip js to zip and download files?
- How do I implement CSRF protection in an Express.js application?
- How do I use Express.js to create a YouTube clone?
- How can I set up X-Frame-Options in ExpressJS?
- How can I use Express.js with TypeScript?
- How can I use the x-forwarded-for header in Express.js?
- How can I disable the X-Powered-By header in Express.js?
- How do Express.js and Spring Boot compare in terms of features and performance?
See more codes...