Git Product home page Git Product logo

Comments (7)

adonespitogo avatar adonespitogo commented on September 26, 2024

I think you could do it simply with the $http success callback since you are sending a basic post request to the server:

        $http.post('server.php', $scope.base64Object)
        .success(function(res){
          alert('File successfully uploaded!');
        })

from angular-base64-upload.

sebastialonso avatar sebastialonso commented on September 26, 2024

Thanks for your answer. I'm afraid I completely ruined what I was originally asking.

I meant if there was an easy way to detect when the user changes the image they had previously assigned to the file input.

Something like:

  • User puts picture
  • User doesn't like picture, decides for another one
  • User substitutes former picture for a new one
  • A random event is fired
  • User uploads data to the server

Either way, I solved it manually, by $watching an attribute of the object, say filesize.

from angular-base64-upload.

adonespitogo avatar adonespitogo commented on September 26, 2024

Good catch. Sorry there's no event fired when a user changes the chosen file currently. What you did is the best way I can think of to solve your problem as well. I'll mark this issue as an enhancement for now.

from angular-base64-upload.

sebastialonso avatar sebastialonso commented on September 26, 2024

Sure, don't worry about it. I love the simplicity of your module. I'll try to read the code on my spare time to see if I can help.

Cheers!

from angular-base64-upload.

adonespitogo avatar adonespitogo commented on September 26, 2024

Thanks man. Cheers!

from angular-base64-upload.

adonespitogo avatar adonespitogo commented on September 26, 2024

#27 There are now many ways to get around this, either to listen to file reader events or watch the models.

from angular-base64-upload.

adonespitogo avatar adonespitogo commented on September 26, 2024

Fixed in pull request #28 (v0.1.1)

$scope.onChangeHandler = function (e, fileList) {
  console.log(e);
  console.log(fileList);
};

<input base-sixty-four-input ng-model="file" on-change="onChangeHandler">

from angular-base64-upload.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.