node.js - 上传图片时, form.parse回调里的files对象是个空对象 ,求大神指点
巴扎黑
巴扎黑 2017-04-17 12:01:59
0
2
702

不知道有哪些情况会导致files为空,fields 有值, 值为 {upload: 'test.png'}, test.png就是我上传的那张图片,请大家帮我看看,不甚感激

    var form = new formidable.IncomingForm();
    form.parse(request, function (error, fields, files){
        console.log(files);
        fs.renameSync(files.upload.path, 'temp/test.png');
        response.writeHead(200,{'Content-Type': 'text/html'});
        response.end('<img src="/show">');
    });
巴扎黑
巴扎黑

Antworte allen(2)
伊谢尔伦

https://cnodejs.org/topic/50234890f767cc9a51f88481

这个帖子里面可能有你需要的东西,我也遇到了这样的问题

PHPzhong

如果是看这个网址www.nodebeginner.org/index-zh-cn.html学习的话:
应该把sever.js里下面这行代码注释掉就可以了
request.setEncoding("utf8");

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage