常见错误检查

Posted huangcaijin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常见错误检查相关的知识,希望对你有一定的参考价值。

 1 function errorCheck() {
 2         window.addEventListener(‘error‘,function(error){
 3                 if(error.filename){return false;}else{
 4                     console.log(error.target+"资源加载失败"+":");
 5                     console.log(error.target);}
 6             },true);
 7         window.onerror = function(message, source, lineno, colno, error) {
 8                 console.log("程序终止:"+message+" at "+lineno+":"+colno);
 9                 return true;
10             }
11         window.addEventListener(‘unhandledrejection‘,function(event){
12             event && event.preventDefault();
13             console.log("数据接口请求失败");
14         },true);       
15     }

 

以上是关于常见错误检查的主要内容,如果未能解决你的问题,请参考以下文章

Hibernate注解常见错误

常见http代码错误原因及处理

常见的代码片段

Alfred常见使用

Java 中最常见的 5 个错误

xml Eclipse模板(代码片段)检查参数并最终抛出IllegalArgumentException