我正在尝试操作json文件,所以我正在尝试JSLINQ,但我不知道为什么我在groupBy()遇到错误。
The website that led me to this code.

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不是函数

最佳答案

问问,你们将得到年轻的帕达万...

var result = jslinq(data)
   .groupBy(function (i) { return i.CustomerName; })
   .select(function(g) {
      return {
         key: g.key,
         items: jslinq(g.elements).select(function(i) { return { x: i.x, y: i.y } }).items
      };
    })
    .toList();

console.log(result);


....

您和我的主要区别...


jslinq已在github上列出的版本中降低
组中的元素集合也需要包装在jslinq()中才能查询

08-08 08:22