這篇文章主要為大家展示了“如何使用JavaScript中的try catch throw處理異?!?,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何使用JavaScript中的try catch throw處理異?!边@篇文章吧。
創(chuàng)新互聯(lián)建站是專業(yè)的孝感網(wǎng)站建設(shè)公司,孝感接單;提供網(wǎng)站制作、成都網(wǎng)站制作,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行孝感網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
使用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
的方式實(shí)現(xiàn)類似的功能。代碼如下所示:
<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>
關(guān)于JavaScript
的assert()
這方面的話我們可以看下面這串代碼:
function assert(bCondition, sErrorMsg) { if (!bCondition) { alert(sErrorMsg); throw new Error(sErrorMsg); } }
以上是“如何使用JavaScript中的try catch throw處理異?!边@篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站欄目:如何使用JavaScript中的trycatchthrow處理異常
當(dāng)前路徑:http://aaarwkj.com/article46/pccghg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號、移動網(wǎng)站建設(shè)、App設(shè)計(jì)、靜態(tài)網(wǎng)站、云服務(wù)器、全網(wǎng)營銷推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)