我可以使用Array.observe检测javascript数组中的更改。
像这样:
Array.observe(myArray, function (changes) {
// handle changes... in this case, we'll just log them
changes.forEach(function (change) {
console.log(change.object);
});
然而,我无法找到一种简单的方法来获取已更改的元素(考虑添加元素)。
有没有办法检测添加的内容而不将此数组与原始数组的副本进行比较?