s3에서 가져온 이미지 표시 s3에서 이미지를 가져와 HTML 페이지에 표시하고 싶다. 각도 HTML 파일: 각도 컨트롤러 파일: angular.module('users').controller('myCtrl', ['$scope',function($scope) { var s3 = new AWS.S3(); s3.getObject({Bucket: 'mybucket', Key: 'myimage.jpg'},function(err,file){ //code?? to display this image file in the img tag //$scope.src=file????....obviously it wont work }); }]); FileReader라는 것을 발견하여 다음과 같이 시도했습니다. var reader..