如何使用lodash过滤,如何使用axios调用的响应来获取数据
var wahahaha = _.filter(response.data.results, o => o.date >= this.$data.endofMonth && o.date <= this.$data.startofMonth);
console.log(wahahaha)
如何使用该功能进行查询
答案 0 :(得分:0)
似乎您交换了日期范围:
_.filter(response.data.results, o => o.date >= this.$data.startofMonth && o.date <= this.$data.endofMonth)
应小于月末且大于月初否?