gpt4 book ai didi

Loopback 3 updateAll 过滤器不工作

转载 作者:行者123 更新时间:2023-12-05 02:42:17 31 4
gpt4 key购买 nike

我在 Loopback 3 中有以下模型:

    {
"name": "rehearsalTest",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true
},
"properties": {
"creationDate": {
"type": "date"
},
"userId": {
"type": "string",
"required": true
},
"courseId": {
"type": "string",
"required": true
},
"templateId": {
"type": "string",
"required": true
},
"testId": {
"type": "string",
"required": true
},
"grade": {
"type": "string",
"required": false
}
},
"validations": [],
"relations": {},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$unauthenticated",
"permission": "DENY"
},
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
}
],
"methods": {}
}

这看起来很琐碎,我在 Mongo 中的数据是这样显示的:

enter image description here

我只想更新已创建行中的成绩,按 testId 过滤。我已经这样做了很多次,但是这个不起作用,原因我似乎无法理解。

首先我尝试了:

await RehearsalTest.updateAll({testId: testId}, {grade: grade}, (err, data) => { 
console.log('rehearsalTest.updateAll', err, data);
});

这将返回一个 {count: 0}

所以我尝试了 like,因为有时它会起作用:

await RehearsalTest.updateAll({testId: {like: testId}}, {grade: grade}, (err, data) => { 
console.log('rehearsalTest.updateAll', err, data);
});

抛出异常:

Error: The testId property has invalid clause {"like":"60afbc93f30a9f7807fc95d1"}: Expected a string or RegExp

有趣的是,如果我去环回浏览器和过滤器,它会完美地工作:

enter image description here

我也尝试过使用 findfindOne,但没有成功。如果没有 like 子句,它要么不返回任何内容,要么返回上面显示的异常。

有什么想法吗?我将永远感激不已。

编辑数据库中的字符串似乎与我正在比较的字符串不完全相同。但我还没有发现到底发生了什么。这个控制台日志:

console.log(`"${rehearsalTest.testId}"`, `"${testId}"`,
`${rehearsalTest.testId}`, `${testId}`,
`"${rehearsalTest.testId}"` === `"${testId}"`,
`${rehearsalTest.testId}` === `${testId}`,
rehearsalTest.testId === testId,
rehearsalTest.testId == testId,
);

返回:

"60b652d4e31a1d54e086570d" "60b652d4e31a1d54e086570d" 60b652d4e31a1d54e086570d 60b652d4e31a1d54e086570d 
true true false true

很明显有些东西让这两个字符串不完全相等,但现在我真的看不出是什么

最佳答案

所以问题是我的函数直接从对象 test 接收 testId,作为 test.id

这个 id,即使它在 console.log 中显示为 string,在内部它是一个对象,所以没有正确比较因为这个。

当我用 "${test.id}" 更改 test.id 时,一切正常。

我现在要自杀了,谢谢。

关于Loopback 3 updateAll 过滤器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67726163/

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