0

我一直在研究这个问题的答案,位于此处如何使套接字成为流?在 imagemagick 之后将 https 响应连接到 S3。根据 loganfsmyth 的建议,我评论了 req.end(image) 行,但是当我尝试上传文件时,服务器只是超时。当我取消注释 req.end(image) 行时,我遇到了类似的行为,但图像成功上传到 S3 除外。如果取消注释 req.end(image) 行是正确的,有人可以为我澄清哪种方式是正确的,向浏览器发送响应以防止它超时的最佳方式是什么?

https.get(JSON.parse(queryResponse).data.url,function(res){

  graphicsmagick(res)
    .resize('50','50')
    .stream(function (err, stdout, stderr) {

      ws. = fs.createWriteStream(output)

      i = []

      stdout.on('data',function(data){
        i.push(data)
      })

      stdout.on('close',function(){
        var image = Buffer.concat(i)

        var req = S3Client.put("new-file-name",{
           'Content-Length' : image.length
          ,'Content-Type' : res.headers['content-type']
        })

        req.on('response',function(res){  //prepare 'response' callback from S3
          if (200 == res.statusCode)
            console.log('it worked')
        })
        //req.end(image)  //send the content of the file and an end
      })
  })
})
4

2 回答 2

0

在您链接到的问题中,用户正在使用putStream,因此调用req.end()不正确,但是在您的情况下,您put直接使用,因此您需要调用req.end()。否则,将其注释掉image,除了长度之外,您永远不会实际使用该值,因此您永远不会发送图像数据。

如果没有看到实际运行此代码的服务器处理程序,很难判断,但您需要(可选)返回一些响应,然后也返回.end()到浏览器的实际连接,否则它将在那里等待。

所以如果你有这样的东西

http.createServer(function(req, browserResponse){

  // Other code.

  req.on('response',function(s3res){  //prepare 'response' callback from S3
      if (200 == s3res.statusCode) console.log('it worked')


      // Close the response. You also pass it data to send to the browser.
      browserResponse.end();
  })

  // Other code.
});
于 2013-04-01T02:24:24.853 回答
0

基本上该页面被请求两次,这导致图像由于图标而被覆盖。node.js页面刷新两次调用资源?

于 2013-04-01T02:23:24.273 回答