将数据索引推送到extjs中的数组中

时间:2018-02-12 15:55:54

标签: javascript arrays extjs

假设console.log(响应)是

1.1

如何将属性1.2,{{1}}推送到extjs中的数组中。必须省略日期

1 个答案:

答案 0 :(得分:0)

使用JavaScript ES6可以实现您的要求。

喜欢这个

const obj = {
    responseText : {
      "success":true,
      "code":0,
      "error":null,
      "total":1,
      "data":[
        {
          "DATE":"2018-02-07",
          "1.1":"10","1.2":"3"
        },
        {
          "DATE":"2018-03-04",
          "1.1":"1",
          "1.2":"5"
        }
      ]
    }
};

const data = obj.responseText.data;

let myArr = [];
data.map((date) => 
  myArr = [...Object.keys(date).filter(key => key != 'DATE')]);

console.log(myArr)