我目前正在尝试使用Amazon s3的aws-sdk(更确切地说是headObject函数)来检查文件是否存在。
正如我在任何地方都能读到的一样,这是应该在尝试检查文件是否存在时使用的功能(以便通过getSignedUrl获取其URL),但是我无法使其工作。
似乎,无论我做什么,函数s3.headObject都告诉我该对象存在。我尝试检查现有项目,不存在的项目,甚至在不存在的存储桶中:所有这些都为我提供了完全相同的输出。我尝试了不同的调用函数的方式(是否异步,是否使用回调),但没有区别。
这是我实现对函数的调用的方式:
var params = {
Bucket: 'BUCKET NAME',
Key: ""
}
// Some more code to determine file name, confirmed working
params.Key = 'FILE NAME'
try {
s3.headObject(params)
// Using here the file that is supposed to exist
} catch (headErr) {
console.log("An error happened !")
console.log(headErr)
}
我也尝试过使用回调:但是,似乎从未输入过回调。这是我的代码:
var params = {
Bucket: 'BUCKET NAME',
Key: ""
}
// Some more code to determine file name, confirmed working
params.Key = 'FILE NAME'
s3.headObject(params, function(err: any, data: any) {
console.log("We are in the callback")
if (err) console.log(err, err.code)
else {
// Do things with file
}
})
console.log("We are not in the callback")
使用此代码,“ We are in the callback”从未出现,而“ We are not in callback”则正确出现。
无论我做什么,都不会发现任何错误。 据我从该函数的工作原理了解到,如果文件不存在,应该抛出一个错误(然后被捕获),从而使我不能使用getSignedUrl函数创建错误的URL。
我在这里做错了什么?
谢谢大家的回答。如果您还有其他问题,我将非常乐意为您解答。
答案 0 :(得分:0)
这是使用async
/ await
语法检查对象存在的正确方法:
// Returns a promise that resolves to true/false if object exists/doesn't exist
const objectExists = async (bucket, key) => {
try {
await s3.headObject({
Bucket: bucket,
Key: key,
}).promise(); // Note the .promise() here
return true; // headObject didn't throw, object exists
} catch (err) {
if (err.code === 'NoSuchKey') {
return false; // headObject threw with NoSuchKey, object doesn't exist
}
throw err; // Rethrow other errors
}
};
答案 1 :(得分:-2)
我确实尝试了语法,但它不起作用。它在我的 lambda 函数中。
params 和 params2 是预定义的一组桶和键。
var url = s3.getSignedUrl('getObject', params);
const objectExist = async (par) => {
try{
console.log(s3.headObject(par).response); //I honestly couldn't find any
//section in the resoonse,
// that make a DNE file different from a existing file.
const ext = await s3.headObject(par).promise((resolve, reject) =>{
console.log("bbbbbbbbbbb");
if(err) { // it keeps saying the err is not global variable.
//I am wondering why this is not defined.
//Really had no idea of what else I could put as condition.
console.log("aaaa"); //never reach here.
return reject(false);}
return resolve(true);
});
console.log(ext); //always true.
if(!ext){url = url = s3.getSignedUrl('getObject', params2, callback); }
}catch(err){
console.log("reeeeeeeeee"); //when the method failed it execute.
url = s3.getSignedUrl('getObject', params2, callback);
console.log(url); //even though I am sure that params2 are valid key, but url in the log always returned undefined.
}
};
objectExist(params);