我正在尝试操作 json 文件,所以我正在尝试 JSLINQ,但我无法弄清楚为什么我在 groupBy() 处遇到错误。 引导我访问此代码的网站。
var query = JSLINQ(json);
var result = query.groupBy(function (i) { //HERE is where the error hits.
return i.CustomerName; //Attribute of json
})
.select(function (i) {
console.log(i);
return {
CustomerName: i.Key, data: i.elements //I read that I get groupBy result like this.
.select(function (j) {
x = j.x, y = j.y //x and y are attributes
})
}
}).toArray();
query.groupBy 不是函数