gpt4 book ai didi

JavaScript:无法获取对象的值

转载 作者:行者123 更新时间:2023-11-28 09:05:48 27 4
gpt4 key购买 nike

这是我的代码

var dataGroupByParentCategory = function(data){
return _.groupBy(data, function(entry){
return entry.category.parent;
});
};


var parentCategorySum = function(data) {

var result = {};
_.forEach(_.keys(this.dataGroupByParentCategory(data)), function(parentCategory){
var that = this;
console.log(parentCategory);
var s = _.reduce(that.dataGroupByParentCategory[parentCategory], function(s, entry){
console.log('>' + entry); // Can not see entry here
return s + parseFloat(entry.amount);
}, 0);

result[parentCategory] = s;
});

return result;
};

数据看起来像

'data': [
{
'category': {
'uri': '/categories/0b092e7c-4d2c-4eba-8c4e-80937c9e483d',
'parent': 'Food',
'name': 'Costco'
},
'amount': '15.0',
'debit': true
},
{
'category': {
'uri': '/categories/d6c10cd2-e285-4829-ad8d-c1dc1fdeea2e',
'parent': 'Food',
'name': 'India Bazaar'
},
'amount': '10.0',
'debit': true
},
{
'category': {
'uri': '/categories/d6c10cd2-e285-4829-ad8d-c1dc1fdeea2e',
'parent': 'Food',
'name': 'Sprouts'
},
'amount': '11.1',
'debit': true
}, ...

有问题吗?

我看不到上面代码中所示的条目值

       console.log('>' + entry);  // Can not see entry here

我正在学习 JavaScript,但不太熟悉作用域的概念,这是导致问题的原因吗?

最佳答案

您的 dataGroupByParentCategory 函数似乎是全局的,因此您不需要使用 thisthat 来访问它。另外,您似乎在 dataGroupByParentCategory[parentCategory] 中犯了一个拼写错误。它必须是dataGroupByParentCategory(parentCategory)

关于JavaScript:无法获取对象的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17127996/

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