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 use Express.js to parse YAML files?
- How can I set up X-Frame-Options in ExpressJS?
- How do I download a zip file using Express.js?
- How can I disable the X-Powered-By header in Express.js?
- How can I use Express.js and Vite together for software development?
- How do Express.js and Spring Boot compare in terms of features and performance?
- How do I use Express.js and Yarn together in a software development project?
- How can I make an XHR request using Express.js?
- How do I implement CSRF protection in an Express.js application?
- How can I configure Express.js to use Nginx as a reverse proxy?
See more codes...