您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“如何使用JavaScript中的try catch throw處理異常”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何使用JavaScript中的try catch throw處理異常”這篇文章吧。
使用JavaScript中的try catch throw 處理異常
在JavaScript中定義異常;
(1)、EvalError: An error occurs in the eval() function.
(2)、RangeError: A number value is greater then or less then the number that can be represented in Javascript(Number.MAX_VALUE and Number.MIN_VAKUE).
(3)、ReferenceError: An illegal reference is used.
(4)、SyntaxError: A syntax error occus inside of an eval() function call. All other syntax error are reorted by the browser and cannot be handled with a try...catch statement.
(5)、TypeError. A variables type is unexpected. 6.URIError. An error ocuurs in the encodeURI() or the decodeURI() function.
代碼如下如下所示:
<script type="text/javascript"> function CreateError() { throw new Error("Created error by custom."); } try { //throw a error from a function just want to see the call stack in firefox. CreateError(); } catch(error) { var errorMsg = ("Message: " + error.message + "\n"); if(typeof(error.stack)!=undefined) { //FF errorMsg += ("Line Number: " + error.lineNumber + "\n"); errorMsg += ("File Name: " + error.fileName + "\n"); errorMsg += ("Stack Trace:\n" + error.stack + "\n"); } else { //IE errorMsg += ("Description: " + error.description + "\n"); errorMsg += ("Number: " + error.number + "\n"); } alert(errorMsg); } finally { //alert("End try catch.message from finally block."); } </script>
而且在我們的代碼中,Error.message
是IE
和FireFox
都支持的屬性, 然而IE
支持description
和 number
屬性。
FF
支持fileName
lineNumber
和 stack
屬性, 由于Javascript
是弱類型的語言, 所以在catch
部分只能catch
一次,不能像C#
這樣的語言可以寫多個catch
,catch
不同類型的exception
。 但是可以用 instanceof
ErrorType
的方式實現類似的功能。代碼如下所示:
<script type="text/javascript"> try { //Syntax Error //eval("alert a"); //Custom Error throw new Error("An error occured."); } catch(error) { if(error instanceof SyntaxError) { alert("Syntax Error"); } else if(error instanceof EvalError) { alert("Eval Error"); } else if(error instanceof RangeError) { alert("Range Error"); } else if(error instanceof ReferenceError) { alert("Reference Error"); } else if(error instanceof TypeError) { alert("Type Error"); } else if(error instanceof Error) { alert("Custon Error"); } alert(error.message); } </script>
關于JavaScript
的assert()
這方面的話我們可以看下面這串代碼:
function assert(bCondition, sErrorMsg) { if (!bCondition) { alert(sErrorMsg); throw new Error(sErrorMsg); } }
以上是“如何使用JavaScript中的try catch throw處理異常”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。