Reputation: 2027
I would like to know how can I upload files using angularjs without using external library and just a single upload button? I have searched for the solution for a while and found a solution is pretty close to what I want as below:
<div ng-controller = "myCtrl">
<input type="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>
var myApp = angular.module('myApp', []);
myApp.directive('fileModel', ['$parse', function ($parse) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var model = $parse(attrs.fileModel);
var modelSetter = model.assign;
element.bind('change', function(){
scope.$apply(function(){
modelSetter(scope, element[0].files[0]);
});
});
}
};
}]);
myApp.service('fileUpload', ['$http', function ($http) {
this.uploadFileToUrl = function(file, uploadUrl){
var fd = new FormData();
fd.append('file', file);
$http.post(uploadUrl, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(){
})
.error(function(){
});
}
}]);
myApp.controller('myCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){
$scope.uploadFile = function(){
var file = $scope.myFile;
console.log('file is ' );
console.dir(file);
var uploadUrl = "/fileUpload";
fileUpload.uploadFileToUrl(file, uploadUrl);
};
}]);
http://jsfiddle.net/JeJenny/ZG9re/
However, I want only a upload button and in the above case, how can I trigger uploadFile()?
Upvotes: 0
Views: 13552
Reputation: 2879
Updated your fiddle: http://jsfiddle.net/ZG9re/7080/
HTML
<div ng-controller = "myCtrl">
<button>
<input type="file" class="input" id="myfile" file-model="myFile"><a href="">Upload Me</a>
</button>
</div>
CSS
#myfile {
opacity: 0;
position: absolute;
}
So that now when you click on "Upload Me" you will get the file explorer.
Update
Please check: http://jsfiddle.net/ZG9re/7081/
Upvotes: 1