在Mozilla开发人员网络上,how to use a MutationObserver上有一个示例。

// select the target node
var target = document.querySelector('#some-id');

// create an observer instance
var observer = new MutationObserver(function(mutations) {
  mutations.forEach(function(mutation) {
    console.log(mutation.type);
  });
});

// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true };

// pass in the target node, as well as the observer options
observer.observe(target, config);

// later, you can stop observing
observer.disconnect();


config变量是Object。但是闭包编译器会生气并


  错误-MutationObserver.prototype.observe的实际参数2与形式参数不匹配
  找到:{属性:布尔值,characterData:布尔值,childList:布尔值}
  必需:(MutationObserverInit | null |未定义)
    viewer.observe(node,config);


externs/html5.js中所设置。
但是,我找不到一种实例化MutationObserverInit类型对象的方法,因为“未捕获的ReferenceError:未定义MutationObserverInit”。

在这里做什么正确的事?

最佳答案

我认为extern文件是错误的,应该修复。

解决方法:

var config = /** @type {MutationObserverInit} */ ({ attributes: true, childList: true, characterData: true });

关于javascript - 在Closure编译器中使用MutationObserverInit的方式是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29964173/

10-12 15:13