使用 Proxy 对象检测 Javascript 数组中的更改

IT技术 javascript
2021-02-28 06:20:30

在 Javascript 中观察数组的变化是相对微不足道的。

我使用的一种方法是这样的:

// subscribe to add, update, delete, and splice changes
Array.observe(viewHelpFiles, function(changes) {
  // handle changes... in this case, we'll just log them 
  changes.forEach(function(change) {
    console.log(Object.keys(change).reduce(function(p, c) {
      if (c !== "object" && c in change) {
        p.push(c + ": " + JSON.stringify(change[c]));
      }
      return p;
    }, []).join(", "));
  });
});

但是,我最近读到它Array.observe已被弃用,我们应该改用代理对象。

我们如何检测 Proxy 对象数组的变化?我找不到任何例子,有人有兴趣详细说明吗?

2个回答

从我可以从MDN 页面读取的内容来看,您可以创建一个通用处理程序,您可以在其中处理对任何对象的所有更改。

从某种意义上说,您编写了一个拦截器,它会在您每次从数组中获取值或设置值时进行干预。然后,您可以编写自己的逻辑来跟踪更改。

var arrayChangeHandler = {
  get: function(target, property) {
    console.log('getting ' + property + ' for ' + target);
    // property is index in this case
    return target[property];
  },
  set: function(target, property, value, receiver) {
    console.log('setting ' + property + ' for ' + target + ' with value ' + value);
    target[property] = value;
    // you have to return true to accept the changes
    return true;
  }
};

var originalArray = [];
var proxyToArray = new Proxy( originalArray, arrayChangeHandler );

proxyToArray.push('Test');
console.log(proxyToArray[0]);

// pushing to the original array won't go through the proxy methods
originalArray.push('test2');

// the will however contain the same data, 
// as the items get added to the referenced array
console.log('Both proxy and original array have the same content? ' 
  + (proxyToArray.join(',') === originalArray.join(',')));

// expect false here, as strict equality is incorrect
console.log('They strict equal to eachother? ' + (proxyToArray === originalArray));

然后输出:

getting push for 
getting length for 
setting 0 for  with value Test 
setting length for Test with value 1
getting 0 for Test
Test

代理的警告是,在对象上定义的所有内容都将被拦截,这可以在使用该push方法时观察到

将被代理的原始对象不会发生变异,并且对原始对象所做的更改不会被代理捕获。

一个警告,IE11 不支持。
2021-04-18 06:20:30
@Icepickle 如果一个人不想用代理替换所有内容只是为了观察,这很重要。假设您有数百万个对象并希望一次“观察”其中 10 个。你是否用代理替换了数以百万计的人,以便能够观察其中的任何 10 个?
2021-04-26 06:20:30
@Winchestro 是的,您根本没有观察对象,但是代理正在为您执行此操作,但是,如果您要发出警告,请注意您arrayToObserve的任何 api 函数正在返回一个数组对象,那么这是否重要? 最终用户会知道他可以按预期与阵列进行交互。这只是一个命名问题吗?(虽然我必须承认,回顾帖子,我认为我的语言可以做一些小的更新)
2021-04-27 06:20:30
但是您根本没有观察数组​​,您创建了一个代理,代理将更改转发到数组。问题是如何实际观察数组本身。将代理命名为“arrayToObserve”具有误导性。那些代理和数组是两个完全不同的对象。
2021-04-30 06:20:30
@Chexpir 是的,根据 MDN,IE 甚至完全不支持它,但是 Edge 应该支持它,这是当前的 MS 浏览器
2021-05-17 06:20:30

你可以做这样的事情

new Proxy([], {
    get(target, prop) {
        const val = target[prop];
        if (typeof val === 'function') {
            if (['push', 'unshift'].includes(prop)) {
                return function (el) {
                    console.log('this is a array modification');
                    return Array.prototype[prop].apply(target, arguments);
                }
            }
            if (['pop'].includes(prop)) {
                return function () {
                    const el = Array.prototype[prop].apply(target, arguments);
                    console.log('this is a array modification');
                    return el;
                }
            }
            return val.bind(target);
        }
        return val;
    }
});