这个问题可能听起来很笨拙,因为我不知道如何用文字表达。请看一下这个例子:
//PHP
<?php
die( "The PHP process stops here. The PHP is still running" );
insert_into_database_someinfo(); //This function will not be executed
?>
我的问题是:在PHP中对于Nodejs,等于die()或exit(),而不停止整个当前nodejs服务器?我发现此link的所有者存在同样的问题,但使用process.exit()
的建议不合适。
process.exit()
将停止整个服务器。
以下代码尝试输出到浏览器,但与PHP die()
不同,这将继续到下一行
req.end( 'This is an output to the browser' );
insert_into_database_someinfo(); //This function will still be executed.
我认为这与PHP中的echo()
有些可比,因为一切都在继续。我想输出信息,然后在那里停止进程(只是当前请求,而不是整个nodejs服务器)。
请告知。
答案 0 :(得分:1)
插入return
以停止执行您的功能:
if (nogood) {
req.end( 'This is an output to the browser' );
return;
}
insert_into_database_someinfo();