这篇翻译不完整。请帮忙从英语翻译这篇文章。
非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
Object.unobserve() 是用来移除通过 Object.observe()
设置的观察者的方法。
语法(Syntax)
Object.unobserve(obj, callback)
参数(Parameters)
obj
- 需要停止观察的对象。
callback
- 通过 observer 给 obj 对象设置的回调函数.
描述(Description)
Object.unobserve()
用来在 Object.observe()
被调用以后,从对象上移除一个观察者。
这个回调函数必须是一个函数的引用,而不能是一个匿名函数。因为这个引用将被用来移除之前设置的观察者方法。 给 Object.unobserve() 传入匿名函数作为回调是不起作用的, 它不能移除任何观察者方法。
Examples
Unobserving an object
var obj = { foo: 0, bar: 1 }; var observer = function(changes) { console.log(changes); } Object.observe(obj, observer); obj.newProperty = 2; // [{name: 'newProperty', object: <obj>, type: 'add'}] Object.unobserve(obj, observer); obj.foo = 1; // The callback wasn't called
Using an anonymous function
var person = { name : 'Ahmed', age : 25 }; Object.observe(person, function (changes) { console.log(changes); }); person.age = 40; // [{name: 'age', object: <obj>, oldValue: 25, type: 'update'}] Object.unobserve(person, function (changes) { console.log(changes); }); person.age = 63; // [{name: 'age', object: <obj>, oldValue: 40, type: 'update'}] // The callback will always be called
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 36 | 未实现 | 未实现 | 23 | 未实现 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 未实现 | 36 | 未实现 | 未实现 | 23 | 未实现 |