gpt4 book ai didi

javascript - 当指定的键不存在时,为什么 S3.deleteObject 不会失败?

转载 作者:IT老高 更新时间:2023-10-28 23:08:04 27 4
gpt4 key购买 nike

使用 AWS SDK for Node ,为什么我在尝试删除不存在的对象(即 S3 key 错误)时没有收到错误消息?

另一方面,如果我指定一个不存在的存储桶,则会产生错误。

如果你考虑下面的 Node 程序,Key 参数列出了一个在桶中不存在的键,但是回调的 error 参数是 null:

var aws = require('aws-sdk')

function getSetting(name) {
var value = process.env[name]
if (value == null) {
throw new Error('You must set the environment variable ' + name)
}
return value
}

var s3Client = new aws.S3({
accessKeyId: getSetting('AWSACCESSKEYID'),
secretAccessKey: getSetting('AWSSECRETACCESSKEY'),
region: getSetting('AWSREGION'),
params: {
Bucket: getSetting('S3BUCKET'),
},
})
picturePath = 'nothing/here'
s3Client.deleteObject({
Key: picturePath,
}, function (err, data) {
console.log('Delete object callback:', err)
})

最佳答案

因为这就是 specs说应该做。

deleteObject(params = {}, callback) ⇒ AWS.Request

Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

所以如果对象不存在,调用deleteObject时仍然不会出错,如果启用了版本控制,即使之前没有要删除的内容,它也会添加一个删除标记。

关于javascript - 当指定的键不存在时,为什么 S3.deleteObject 不会失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30697746/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com