Skip to content

Instantly share code, notes, and snippets.

@azami
Created August 5, 2014 02:14
Show Gist options
  • Save azami/84b4c401e3bed22cec6a to your computer and use it in GitHub Desktop.
Save azami/84b4c401e3bed22cec6a to your computer and use it in GitHub Desktop.
angularjsでファイルアップロード
var fd = new FormData();
fd.append('file', $scope.files[0]);
$http({url: URL.api + '/upload/',
method: 'POST',
data: fd,
headers: {'Content-Type': undefined},
transformRequest: angular.identity});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment