node.js - resquest.js pipe 資料流下載檔案時, 如何自動取得檔案後綴名並儲存? 在哪一步加入?
阿神
阿神 2017-05-16 13:28:40
0
1
1314

我想要在 fs.createWriteStream 之前取得到這個連結的後綴名稱
之後再 pipe 到這個資料流中儲存檔案.

Promise 的方式我試過, then 之後就是完整的 response, 不能寫入資料流.
並且 fs.writeFile 方法我也試過了, 寫入格式不正確.

注意哈: URL中沒有檔案後綴名

下面是程式碼

const fs = require('fs');
const Promise = require('bluebird');
const request = require('request');

let url = 'http://mmbiz.qpic.cn/mmbiz_jpg/D1Wza369eswnoapNaAdvtqygvMAnViaCLa8AMwwDZ4rebKrPvicxFf8zuibfialkPD3A7w8omWjicVm7GhFWcsibfGibw/0';
let file = fs.createWriteStream('file');

request
    .get(url)
    .on('response', function (response) {
        let type = response.headers['content-type']
        type = '.' + type.substring(type.lastIndexOf('/') + 1);
        console.log(type);
        // 在这里加是不可以的
    })
    .pipe(file)
    .on('end', function () {
        console.log('end')
    })
阿神
阿神

闭关修行中......

全部回覆(1)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!