如何仅使用地图和减少使用事件查询视图的地图?
这是我目前在 data.js 中的内容:
function(data) {
var numRows = data.rows.map(function(r) {
return r
}); //this is returning an object that is the result of the reduce function
// but I want the total_rows of the map function
var sum = data.rows.reduce(function(r) {
return r.value
}); //this returns the sum of all row values
var avg = sum.value / numRows
$.log(avg);
$.log(numRows);
return {'total': numRows, 'average': avg}
};
我希望它返回查询的总行数及其值的平均值。
在此先感谢您的帮助。