gpt4 book ai didi

javascript - “id”始终未定义(Leap 运动)

转载 作者:行者123 更新时间:2023-11-28 15:57:48 26 4
gpt4 key购买 nike

我刚刚开始开发 Leap 运动,我有一般性问题这是我的代码:

    Leap.loop(function(obj) {
var hands = obj.hands.map(function(d) {
return {
id: d.id,
length: d.length,
palmPositionX: d.palmPosition[0],
palmPositionY: d.palmPosition[1],
palmPositionZ: d.palmPosition[2]
}

});
console.log(hands.length); //Work fine
console.log(hands.id); //undefined!

//handParcoords.data(hands).render(); //This works - It takes all parameters and render a chart

});

我错过了什么吗?为什么长度有效,而 id 和 palmPositionX 或 palmPositionY 不起作用?

最佳答案

hands 是一个数组,因此您必须引用数组中的元素,然后获取其 id

console.log(hands[0].id);

关于javascript - “id”始终未定义(Leap 运动),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18019771/

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