node mongoskin做的一个站 从数据库读取的图片路径 当页面刷新8次后图片会是白色的, 不知道是怎么引起的
Test
这个是前台代码
后台代码
handler['/comment/img']=function(req, res){
mongo.db('localhost:27017/test')
.collection('imgURL')
.find({}).toArray(function (err, result) {
if(err) {
res.end(JSON.stringify({code:1}));
}else{
res.end(JSON.stringify({code:0,comments:result}));
}
});
}
这个是路由代码
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
图片是静态资源,所以只有三种可能:
所以就检查这些内容: