Amboom
Amboom

Reputation: 156

Uploading File in AngularJS without submit button

What is the best practices in angularjs when submitting file without a submit button. Here is my sample code.

<form method="post" enctype="multipart/form-data" action="">
   <input type="file" name="file">
</form>

I already tried using onchange, very useful also but what i want is after selecting a file it will make an ajax call (without submit button).

Upvotes: 1

Views: 1256

Answers (1)

Pratik Bhajankar
Pratik Bhajankar

Reputation: 1154

i have used ngpload module for it.

ngpload

please refer the document from the link this will definitely help you a lot

Upvotes: 1

Related Questions