gpt4 book ai didi

javascript - 尝试访问环回相关模型查询时 JS 对象的奇怪行为

转载 作者:搜寻专家 更新时间:2023-10-31 23:02:01 24 4
gpt4 key购买 nike

我正在使用 Loopback Framework,做一个 Web 项目。但我认为我在这里提出的问题与此无关,而是与一般的 Javascript/Node.JS 知识有关。

在代码的一部分,我正在做:

roleMapping.find({
where: {
principalType: 'USER',
principalId: context.principals[0].id
},
include: 'role'
}, function(err, roles){
console.log(roles[0]);
for (var i in roles)
{
if (roles[i].role.name === 'teamLeader' &&
roles[i].groupId === context.modelId)
{
cb(null,true);
}else {
cb(null,false);
}
}
});

好的,但是在尝试比较 roles[i].role.name 时失败了.所以,我去记录了 roles[i] 的内容包含的对象。

    { groupId: 1,
id: 3,
principalType: 'USER',
principalId: 1,
roleId: 2,
role:
{ id: 2,
name: 'teamLeader',
description: 'The leader(s) of a team',
created: null,
modified: null } }

好的,没问题,但它仍然失败,所以我尝试只打印 role属性(property)。令我惊讶的是:

{ [Function]
update: [Function],
destroy: [Function],
create: [Function],
build: [Function],
_targetClass: 'Role' }

因此,role属性(property)似乎是某种功能?但是之前是怎么正确打印出来的呢?

最终,我在沮丧中迷失了方向,我尝试了 var role = JSON.parse(JSON.stringify(roles[i]));

然后我可以正常访问对象的每个属性,但这既不干净也不正常。

这在我多年的 JS 编程中第一次让我大吃一惊(虽然有点业余),如果有人能向我澄清这一点,我会很高兴。谢谢

编辑:它似乎是特定于此框架的,所以我正在更改标题以帮助社区。

最佳答案

我刚找到 issue 1425链接到以下 docs :

With Node.js API, you need to call toJSON() to convert the returned model instance with related items into a plain JSON object

Please note the relation properties […] points to a JavaScript function for the relation method.

所以看来你必须使用

for (var i=0; i<roles.length; i++) {
var x = roles[i].toJSON();
cb(null, x.role.name === 'teamLeader'
&& x.groupId === context.modelId);
}

关于javascript - 尝试访问环回相关模型查询时 JS 对象的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30927114/

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