我有一个使用jQuery CSV(https://github.com/evanplaice/jquery-csv/)转换为jQuery对象的csv文件。
这是代码:
$.ajax({
type: "GET",
url: "/path/myfile.csv",
dataType: "text",
success: function(data) {
// once loaded, parse the file and split out into data objects
// we are using jQuery CSV to do this (https://github.com/evanplaice/jquery-csv/)
var data = $.csv.toObjects(data);
});
我需要按对象中的键汇总值。具体来说,我需要按公司将bushels_per_day值相加。
对象格式如下所示:
var data = [
"0":{
beans: "",
bushels_per_day: "145",
latitude: "34.6059253",
longitude: "-86.9833417",
meal: "",
oil: "",
plant_city: "Decatur",
plant_company: "AGP",
plant_state: "AL",
processor_downtime: "",
},
// ... more objects
]
这不起作用:
$.each(data, function(index, value) {
var capacity = value.bushels_per_day;
var company = value.plant_company.replace(/W+/g, '_').toLowerCase();
var sum = 0;
if (company == 'agp') {
sum += capacity;
console.log(sum);
}
});
它只返回每个带有公司前导零的值:
0145
0120
060
等。
我该怎么做?
使用 parseInt()
将字符串转换为数字。否则,
+' 执行字符串连接而不是加法。
此外,您需要在循环外初始化sum
。否则,您的总和每次都会被清除,并且您不会计算总计。
var sum = 0;
$.each(data, function(index, value) {
var capacity = parseInt(value.bushels_per_day, 10);
var company = value.plant_company.replace(/W+/g, '_').toLowerCase();
if (company == 'agp') {
sum += capacity;
console.log(sum);
}
});
你在 $.each
中使用了一个局部变量sum
,该值在每次迭代时都会重新赋值,并且你的变量bushels_per_day
string
类型化,所以 JS 只是将它的值与sum
值连接
试试这个。它对我有用