防止Node.js中错误导致进程阻塞的办法
前言 在Node.js中,当某个回调函数发生了错误,整个进程都会崩溃,影响后面的代码执行。 Node.js这样处理,是因为在发生未被捕获的错误时,进程的状态就不确定。之后也就无法正常工作了。如果错误始终不处理的话,就回一直抛出意料之外的错误,这样不利于调试。 防止错误导致的进程阻塞的方法主要有如下两种: 一. try-catch try-catch允许进行异常捕获,并让代码继续执行下去: 例如: 当函数抛出错误时,代码就停止执行了: (function() { var a = 0; a(); console.log("get here."); // 不执行 })(); 使用try-ca
用户评论
推荐下载
-
Learning Node.js
Learning Node.jsA Hands-On Guide toBuilding Web Applications inJavaScriptAuthor:Marc WandschneiderAd
35 2019-10-04 -
Node.js Percollate
Node.js-Percollate命令行实用程序
4 2020-08-23 -
Node.js OpenSourceGraphQLAPIforOnlineShows
Open Source GraphQL API for Online Shows
13 2020-08-30 -
Node.js Light
Light:js-Light
6 2020-08-29 -
Node.js下载
一款js的小型编译器可简单的进行本地服务
25 2020-06-08 -
node.js in action
node.js 实战 高清pdf
33 2019-09-24 -
Automating with Node.js
AutomateyourworkflowwiththepowerofNode.js!Ifyourjobisloadedwithmanualwork,thenwhynotwritescriptsthat
15 2019-09-28 -
Node.js源码
编程NodeJS: 第一天: 介绍NodeJS。 Npm。 核心库。 要求。 异步代码。 使用NodeJS的文件系统。 正在记录。 简单的HTTP服务器。 静态渲染。 第二天: MongoDB。 猫鼬
19 2021-04-19 -
node.js视频
node.js学习视频,无法免费上传,共同学习,主页有更多学习视频
14 2020-08-05 -
Node.js MeusestudossobreIA
Meus estudos sobre IA
4 2021-02-19
暂无评论