JavaScript global event mechanism

前端 未结 10 2178
无人及你
无人及你 2020-11-22 14:39

I would like to catch every undefined function error thrown. Is there a global error handling facility in JavaScript? The use case is catching function calls from flash that

10条回答
  •  野性不改
    2020-11-22 15:09

    It seems that window.onerror doesn't provide access to all possible errors. Specifically it ignores:

    1. loading errors (response >= 400).
提交回复
热议问题