在JS中编写更短的switch语句,同时使用express和Mongoose,可以通过使用对象字面量和函数来实现。以下是一种可能的实现方式:
const express = require('express');
const mongoose = require('mongoose');
const app = express();
// 连接数据库
mongoose.connect('mongodb://localhost/mydatabase', { useNewUrlParser: true });
// 定义数据库模型
const User = mongoose.model('User', {
name: String,
age: Number,
});
app.get('/users/:id', (req, res) => {
const userId = req.params.id;
// 使用对象字面量定义路由处理函数
const handlers = {
profile: () => {
// 查询用户信息
User.findById(userId, (err, user) => {
if (err) {
res.status(500).send('Internal Server Error');
} else if (!user) {
res.status(404).send('User Not Found');
} else {
res.json(user);
}
});
},
posts: () => {
// 查询用户的帖子
// ...
},
comments: () => {
// 查询用户的评论
// ...
},
};
// 根据请求路径调用对应的处理函数
const path = req.path.substring(1); // 去掉路径中的斜杠
handlers[path] ? handlers[path]() : res.status(404).send('Not Found');
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
在上述代码中,我们使用对象字面量定义了一个handlers
对象,其中的属性名对应不同的请求路径,属性值是处理该路径的函数。通过获取请求路径并去掉斜杠,我们可以直接调用对应的处理函数,而无需使用switch语句。
需要注意的是,上述代码只是一种示例,实际应用中可能需要根据具体需求进行修改和扩展。此外,为了使代码更加简洁和易于维护,可以考虑将路由处理函数拆分到单独的模块中。
领取专属 10元无门槛券
手把手带您无忧上云