使用节点js和图像下载器。我偶然发现了网址和http.get
的问题,如果网址在查询中包含空格,则会失败。我设法通过自己逃避网址路径来解决问题。如果我使用url.parse()
,路径变量将在第一个空格处被截断。我的解决方案有效,但我想知道是否有更好的解决方案。
function downloadFileFromURL( file_url, callback )
{
//-------------
// really complicated way to get a http.get save path
var protocol = url.parse( file_url).protocol;
var host = url.parse( file_url ).host;
var full_domain = protocol + '//' + host;
var escaped_path = escape(file_url.substring( full_domain.length ));
var options = {
host: host
, port: 80
, path: escaped_path
}
var file_url_info = url.parse( file_url );
var file_path = path.join( __dirname, 'images', path.basename(file_url) );
var request = http.get( options , function(res){
var imagedata = ''
res.setEncoding('binary')
res.on('data', function(chunk){
imagedata += chunk;
})
res.on('end', function(){
fs.writeFile( file_path, imagedata, 'binary', function(err){
if (err) callback( err );
else {
callback( null, file_path );
}
})
})
})
}