node.js - express,10次请求之后,status就pending了

浏览:22日期:2022-09-16

问题描述

问题解答

回答1:

可以尝试在请求后添加时间戳 http://www.ajax.com?t=111

回答2:

这个问题我测试了很久。终于在朋友帮助下,找到了错误原因。是数据库的连接没有关闭。至于为什么是10次,我不太清除。希望知道的人能跟我说一下。谢谢

connection.query($sql.search, [start,end,date], function(err, result) { res.render(’result’,{result:’null’,user:’’,date1:date1,date2:date2,date3:date3,start:start,end:end,temp:temp});});在后面加上connection.release();就行了。

相关文章: