无法使用lodash进行过滤纽克斯

时间:2018-10-05 09:45:19

标签: lodash

如何使用lodash过滤,如何使用axios调用的响应来获取数据

var wahahaha = _.filter(response.data.results, o => o.date >= this.$data.endofMonth && o.date <= this.$data.startofMonth);
      console.log(wahahaha)

如何使用该功能进行查询

1 个答案:

答案 0 :(得分:0)

似乎您交换了日期范围:

_.filter(response.data.results, o => o.date >= this.$data.startofMonth && o.date <= this.$data.endofMonth)

应小于月末且大于月初否?