84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
直接x=require(http).createServer.listen的话,哪怕是全局变量也只存在于那个进程中。再次打开node.exe是一个新的进程,变量不存在。请教一旦关了命令行界面,如何才能再访问当时启动的上下文去热操作那个x?总不能每次都重启吧
人生最曼妙的风景,竟是内心的淡定与从容!
全局变量只存在在一个进程里,不能跨进程调用。你若想要调试,直接写在js文件里。修改了就只能重启。js是‘半编译’语言。
linux下用nohup node xxxx.js &windows下用start node xxx.js
nohup node xxxx.js &
start node xxx.js
配置这种可以不要放到全局变量来做,放到文件系统上吧
全局变量只存在在一个进程里,不能跨进程调用。你若想要调试,直接写在js文件里。修改了就只能重启。js是‘半编译’语言。
linux下用
nohup node xxxx.js &
windows下用
start node xxx.js
配置这种可以不要放到全局变量来做,放到文件系统上吧