解决nodejs的Connection lost: The server closed the connection
前言这是由于mysql自带的一段时间无动作会自动关闭的机制解决使用闭包可以完美解决问题varmysql=require('mysql')varsqlConfig={host:'localhost',user:'root',password:'pwd',database:'dbbase'}varconn=function(){letconnection=mysql.createConnection(