在Mozilla开发者网络上,how to use a MutationObserver上有一个示例。
dat_2 <- dat^2
colnames(dat_2) <- paste0(colnames(dat),"_2")
dat_tot <- cbind(dat, dat_2)
// 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
。但是闭包编译器会生气并且
错误 - MutationObserver.prototype.observe的实际参数2与形式参数
不匹配 found:{attributes:boolean,characterData:boolean,childList:boolean}
必需:(MutationObserverInit | null | undefined) observer.observe(node,config);
在externs/html5.js中设置 然而,我找不到实例化MutationObserverInit类型对象的方法,因为&#39; Uncaught ReferenceError:MutationObserverInit未定义&#39;。
在这里做什么是正确的?
答案 0 :(得分:3)
我认为extern文件是错误的,应该修复。
这是解决方法:
var config = /** @type {MutationObserverInit} */ ({ attributes: true, childList: true, characterData: true });