为什么S3只存储我循环的最后一项?

时间:2015-07-24 11:09:41

标签: node.js amazon-web-services amazon-s3 coffeescript aws-sdk

我尝试使用节点AWS SDK上传图片,但是当我使用循环时遇到问题。

这是我的节点模块:

gm = require('gm').subClass imageMagick: true
s3 = require '../../modules/s3'
Photo = require '../../models/Photo'
sizes =
  t: 100
  m: 240
  z: 640
  l: 1024
  k: 2048
newPhoto = new Photo
newPhotoImg = gm process.cwd() + '/' + req.files.file.path
for key, val of sizes
  newPhotoImg
  .resize(null, val)
  .toBuffer 'jpg', (err, buffer) ->
    if err then console.error err and res.status(500).end() else
      params =
        Key: newPhoto.id + '-' + key + '.jpg'
        Body: buffer
        ContentType: 'image/jpeg'
      s3.putObject params, (err, data) ->
        if err then console.error err else console.log data

我的s3模块效果很好,很可能不是问题的一部分。

问题是我为每个尺寸都返回了一个ETag但是当我查看我的S3管理控制台时,只存储了最后一个循环项(大小为' k')。

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

就像@RistoNovic所说,我必须使用forEachOf模块的async函数进行异步循环。

uploadSize = (val, key, callback) ->
  newPhotoImg
  .resize null, val
  .toBuffer 'jpg', (err, buffer) ->
    if err then callback err else
      params =
        Key: newPhoto.id + '/' + newPhoto.id + '-' + key + '.jpg'
        Body: buffer
        ContentType: 'image/jpeg'
      s3.putObject params, (err, data) ->
        if err then callback err else callback()

async.forEachOf sizes, uploadSize, (err) ->
  if err then console.error err and res.status(500).send "Error with uploading image." else
    fs.unlinkSync process.cwd() + '/' + req.files.file.path
    newPhoto.save (err, doc) ->
      if err then console.error and res.status(500).send "Error with saving photo." else
        res.send doc