как получить URL-адрес Местоположение, которое я не могу сделать, кто-нибудь может помочь
, используя angular 6, как получить все местоположение в моем браузере Снимок экрана проблемы
Я написал этот код uploadFile (file) {
const contentType = file.type;
const bucket = new S3(
{
accessKeyId: 'XXXXXXXXXXXXXXX',
secretAccessKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
region: 'us-east-2'
}
);
const params = {
Bucket: 'test123re',
Key: 'test123re/' + file.name,
Body: file,
ACL: 'public-read',
ContentType: 'application/json'
};
bucket.upload(params, function (err, data) {
if (err) {
console.log('There was an error uploading your file: ', err);
return false;
}
console.log('Successfully uploaded file.', data);
this.resssss = data;
console.log('Successfully.', this.resssss);
this.location = this.resssss.Location;
console.log('AwsLocation.', this.location);
});
} файл component.ts Я получаю консоль результатов, мне не нужно в браузере
AWS URL получить здесь {{AwsLocation}}