码迷,mamicode.com
首页 > Web开发 > 详细

node通过http.request向其他服务器上传文件

时间:2017-05-23 15:58:40      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:com   pip   position   oca   details   keep   llb   header   请求   

function upload(callback) {
    let boundaryKey = ‘----‘ + new Date().getTime();    // 用于标识请求数据段
    let options = {
        host: ‘localhost‘, // 远端服务器域名
        port: 80, // 远端服务器端口号
        method: ‘POST‘,
        path: `/upload`, // 上传服务路径
        headers: {
            ‘Content-Type‘: ‘multipart/form-data; boundary=‘ + boundaryKey,
            ‘Connection‘: ‘keep-alive‘
        }
    };
    let req = http.request(options, function(res){
        res.setEncoding(‘utf8‘);

        res.on(‘data‘, function(chunk) {
            console.log(‘body: ‘ + chunk);
        });

        res.on(‘end‘, function() {
            console.log(‘res end.‘);
        });
    });
    /*req.write(
         ‘--‘ + boundaryKey + ‘rn‘ +
         ‘Content-Disposition: form-data; name="upload"; filename="test.txt"rn‘ +
         ‘Content-Type: text/plain‘
     );*/
    req.write(
        `--${boundaryKey}rn Content-Disposition: form-data; name="${self.path}"; filename="${self.file}"rn Content-Type: text/plain`
    );

    // 创建一个读取操作的数据流
    let fileStream = fs.createReadStream(this.filePath);
    fileStream.pipe(req, {end: false});
    fileStream.on(‘end‘, function() {
        req.end(‘rn--‘ + boundaryKey + ‘--‘);
        callback && callback(null);
    });
}
参考地址: http://blog.csdn.net/haiyan2012/article/details/8540802
http://www.cnblogs.com/king_domain/p/5630665.html

node通过http.request向其他服务器上传文件

标签:com   pip   position   oca   details   keep   llb   header   请求   

原文地址:http://www.cnblogs.com/sorrowx/p/6894144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!