当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


underscore.js _.isError()用法及代码示例


Underscore.js 是 javascript 中的一个库,它使对数组、字符串、对象的操作更加容易和方便。 _.isError() 函数用于检查给定对象是否为javascript错误对象。

注意:在浏览器中使用下划线函数之前,非常有必要链接下划线CDN。链接underscore.js CDN时“_”作为全局变量附加到浏览器。

用法:

_.isError(object);

参数:它只需要一个参数,即对象。



返回:它返回布尔值。如果该对象是继承自 javascript 的 Error 对象,则返回 true,否则该函数返回 false。

为了更好地理解该函数,下面给出一些示例。

范例1:从错误对象创建错误时


<!DOCTYPE html> 
<html> 
  <head> 
    <script src =  
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > 
    </script> 
   </head> 
  <body>
    <script>
      let e=new Error()
      let ans=_.isError(e)
      console.log(_.isError(e))
      if(ans)
      console.log("It is the javascript error")
    </script>
  </body> 
</html>

输出:

范例2:当 try catch 用于抛出错误时。


<!DOCTYPE html> 
<html> 
  <head> 
    <script src =  
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > 
    </script> 
   </head> 
  <body>
    <script>
      let e;
      try{
        alrt("GeeksforGeeks")
      }
      catch(e){
        let ans=_.isError(e)
        console.log(`Error is ${e}`)
        console.log(_.isError(e))
        if(ans)
        console.log("It is the javascript error object")
      }
    </script>
  </body> 
</html>

输出:

范例3:当给定错误是字符串类型时。


<!DOCTYPE html> 
<html> 
  <head> 
    <script src =  
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > 
    </script> 
   </head> 
  <body>
    <script>
      let e="some error"
      let ans=_.isError(e)
      console.log(_.isError(e))
      if(ans)
      console.log("It is the javascript error object")
      else
      console.log("It is not the javascript error object")
    </script>
  </body> 
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Underscore.js _.isError() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。