捕获异常

Posted 花花

tags:

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

try catch finally throw

try{

  // code1

}catch(e){

  // code1有错误的话,会执行catch里面的代码code2,e是code1里面报的错,必须带这个参数

  // code2

  

}finally{

 // code1 有没有错,都会执行finally里面的代码code3

 // code3

}

 

throw new Error(str); // 报错,throw后面必须是 错误对象,一般写函数的时候可以用,一旦报错后面的代码将不再执行

 

try{
  aolert(1);  
}catch(e){
  console.dir(e);
console.dir(e.name);

console.log("catch");
 // ReferenceError: aolert is not defined
 // 错误对象一般包括,e.name和 e.message 

}finally{
  console.log("finally")
}

function fn(num){
 if(typeof num !=="number"){
   throw new Error("fn的参数必须是数字类型")
 }
 console.log("right")
}

fn("1"); // Uncaught Error: fn的参数必须是数字类型
fn(1);

 

以上是关于捕获异常的主要内容,如果未能解决你的问题,请参考以下文章

Java异常处理机制

从片段中捕获图像

小片段中的 ORA-06512 [重复]

如何在片段中从相机捕获图像,

捕获异常

异常捕获