NodeJS下载pdf文件

时间:2018-03-13 11:36:05

标签: node.js http pdf download unirest

您好我正在尝试使用nodejs(UNIREST)下载pdf,但我有点库存。

                    var url_pdf = "http://myurl.com/ex.pdf"
                    unirest.get(url_pdf)        
                    .as.binary(function (response) {                        
                       fs.writeFile("./pdf/test.pdf", response.body, 'binary', function (err){
                          if (err) 
                             console.log(err);
                        }); 
                    })

当wrting文件时,它的未命中格式化(只是一个空白的pdf文件)大小是可以的。

0 个答案:

没有答案