Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AngularJS image upload preview without directive

I'm uploading files via service:

var addFile = function(files) {
  var deferred = $q.defer();
  var fd = new FormData();
  fd.append("file", files[0]);
  $http.post("/files", fd, {
      ***
    })
    .success(function(data, status, headers, config) {
      ***
    })
    .error(function(err, status) {
      ***
    });
    ***
};

and in controller I have something like:

uplService.addFile($scope.files).then(function(url) {
  $scope.news.Photo = url;
});

and in HTML view:

<input type="file" name="file" onchange="angular.element(this).scope().photoChanged(this.files)" />

before that I uploaded file on-the-go, when I select file it goes directly to server, but now I need to display it in my form when I select it, but upload later, all I see in web is using directives, but how could I organize it without using directives?

like image 705
byCoder Avatar asked Jun 13 '26 10:06

byCoder


1 Answers

Can you try this in your controller to pass your file object here:

$scope.fileReaderSupported = window.FileReader != null;
$scope.photoChanged = function(files){
    if (files != null) {
        var file = files[0];
    if ($scope.fileReaderSupported && file.type.indexOf('image') > -1) {
        $timeout(function() {
            var fileReader = new FileReader();
            fileReader.readAsDataURL(file);
            fileReader.onload = function(e) {
                $timeout(function(){
                    $scope.thumbnail.dataUrl = e.target.result;
                });
            }
        });
    }
}
};

and on the view

<img ng-show="thumbnail.dataUrl != null" ng-src="{{ thumbnail.dataUrl }}" class="thumb">

demo here

Hope this help

like image 52
murnax Avatar answered Jun 15 '26 01:06

murnax



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!