在Express.js中,可以通过req.params对象来获取URL参数,并将其传递给模板。下面是一个完整的示例:
const express = require('express');
const app = express();
// 定义路由处理程序
app.get('/user/:id', (req, res) => {
const userId = req.params.id;
res.render('user', { userId: userId });
});
// 启动服务器
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
<!DOCTYPE html>
<html>
<head>
<title>User Page</title>
</head>
<body>
<h1>User ID: <%= userId %></h1>
</body>
</html>
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
http://localhost:3000/user/123
,将会显示用户ID为123的页面。这是一个简单的示例,展示了如何在Express.js中将URL参数传递给模板。在实际开发中,您可以根据需求进行更复杂的处理和渲染。
领取专属 10元无门槛券
手把手带您无忧上云