gpt4 book ai didi

javascript - 使用参数时获取查询返回空数组

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:07:59 26 4
gpt4 key购买 nike

我正在尝试使用 lucid-mongo 从 mongodb 集合中获取一些值,它返回给我一个空数组。这些函数基本上是从我代码中其他地方的其他函数复制而来的,只是更改了某些值所在的位置。

params.id 返回与 auth.user._id 相同的值,但不知何故它不起作用。我也尝试将 id 作为原始字符串输入,但它也没有用。

//these two functions work normally
async getMonths({ auth }) {
const day = await Day.query()
.where({
userId: auth.user._id
})
.first();

return day;
}
async showMonth({ request, auth }) {
let { date } = request.only(["date"]);

const day = await Day.query()
.where({
userId: auth.user._id,
date: date
})
.fetch();
return day;
}
//these two return me an empty array (notice they're basically the same)
async showMonthGestor({ request, auth, params }) {
let { date } = request.only(["date"]);

const day = await Day.where({
userId: params.id,
date: date
}).fetch();
console.log(params.id);
return day;
}
async showGestor({ auth, params }) {
const day = await Day.query()

.where({ userId: params.id })
.fetch();
console.log(day);
return day;
}

根据请求,这里是函数的路由:

//these ones work fine
Route.post("/history", "DayController.show").middleware(["auth"]);

Route.post("/history/permonth", "DayController.showMonth").middleware(["auth"]);
//these do not (middleware "gestor" only checks if the value of "userType"
//in auth.user is "gestor" and returns a 401 if not)
Route.post("/history/:id", "DayController.showGestor").middleware([
"auth",
"gestor"
]);

Route.post("/history/permonth/:id", "DayController.showMonthGestor").middleware(
["auth", "gestor"]
);

预期的输出是具有给定查询的实例列表。

最佳答案

这可能是由于您的身份验证中间件返回了一个 MongoDB 风格的 ObjectId,而它在您的请求参数中表示为一个字符串。如果是这种情况,您需要将其转换为 ObjectId 并将其传递给您的查询。试试这个:

const { ObjectId } = require('mongodb');

async showMonthGestor({ request, auth, params }) {
let { date } = request.only(["date"]);

const day = await Day.where({
userId: ObjectId(params.id),
date: date
}).fetch();
console.log(params.id);
return day;
}

关于javascript - 使用参数时获取查询返回空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58437632/

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