gpt4 book ai didi

javascript - 窗口错误 : url property empty when error in dynamically added script (via script tag)

转载 作者:行者123 更新时间:2023-11-30 15:47:48 24 4
gpt4 key购买 nike

我想要做的是知道动态添加的脚本中是否发生了错误。这应该通过检查 onerror 事件参数的 url 属性来完成。

但是,当我在脚本的开头添加事件监听器时,即在动态添加脚本标记之前,如果动态添加的脚本中发生错误,则 url 属性为空。

所以我尝试在添加脚本标签后重新绑定(bind)事件

document.head.appendChild(scriptElement);
document.getElementById(scriptTagId).addEventListener('onerror',someErrorFunction);

还有

scriptElement.setAttribute('onerror','someErrorFunction(event);');
document.head.appendChild(scriptElement);

也喜欢

document.head.appendChild(scriptElement);
window.addEventListener('onerror',someErrorFunction);

但无济于事。实际上,使用第一种方法甚至只能捕获错误,即在脚本开头绑定(bind) onerror 事件。

最佳答案

我认为您在通过 ID 获取脚本元素时遇到了问题。您可以使用简单的脚本加载器来实现最终结果。主要区别在于它绑定(bind)到脚本元素的 onerroronload 属性,而不是使用事件监听器

编辑

使用 window.onerror 并绑定(bind)到 onafterscriptexecute 而不是 onload 并使用 document.currentScript 获取引发错误的脚本标签。

window.onerror = function(message, source, lineno, colno, error){
console.log('window.error', {
message,
source,
lineno,
colno,
error,
src: document.currentScript.src
})
}

function loadScript(src, callback) {
console.log('loading: ' + src)
const script = document.createElement('script')
script.onerror = function() {
console.log('error loading script: ' + src)
}
script.onafterscriptexecute = callback
script.src = src
document.head.appendChild(script)
}

loadScript('http://codepen.io/synthet1c/pen/BLwWOb.js', function(){
console.log('this aint gonna happen')
})

loadScript('https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js', function(){
console.log('success loaded jQuery')
})

关于javascript - 窗口错误 : url property empty when error in dynamically added script (via script tag),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39808895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com