gpt4 book ai didi

node.js - GET请求 'find by name'而不是通过id查找

转载 作者:太空宇宙 更新时间:2023-11-04 01:29:50 24 4
gpt4 key购买 nike

有没有办法让我使用此代码或类似代码通过用户名而不是 findById 进行查找?

Router.route('/:id').get(function (req, res)
{
let id = req.params.id;
Books.findById(id, function (err, course) {
res.json(course);
});
});

最佳答案

Books.find({username: 'username'},function (err, course) {res.json(course);}); 

Books.find({username: /username/i},function (err, course) {res.json(course);}); // Like operator

希望能有效果看Mongoose Docs here

关于node.js - GET请求 'find by name'而不是通过id查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56460183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com