如何使用 defineProperty JS 获取过滤后的数组?

How to get filtered array with defineProperty JS?

我尝试寻找一种方法,但找到了 none。

我想在访问数组时过滤掉数组项。例如:只过滤掉负值

let arr = [-1, -2, -4, -5, 8, 9, 10, -7, 5, 7, 8, 4, -12];
let o = {
  arr: arr
};

Object.defineProperty(o, 'arr', {
  get: () => { /* filter only negative values */ }
});

// should print only positive values
console.log(o.arr)

您可以使用过滤器

let arr = [-1, -2, -4, -5, 8, 9, 10, -7, 5, 7, 8, 4, -12];
let o = {
  array: arr
};

Object.defineProperty(o, 'arr', {
  get: () => {
    return o.array.filter(a => a >= 0)
  }
});

console.log(o.arr)

你可以使用 Array.prototype.filter 和这个(上下文)

let arr = [-1, -2, -4, -5, 8, 9, 10, -7, 5, 7, 8, 4, -12];
let o = {
  arr,
};

Object.defineProperty(o, 'negative', {
  // return array values where item < 0
  get: function () {return this.arr.filter(item => item < 0)}
});

// should print only positive values
console.log(o.negative)