标签:file上传
文件上传时的处理$scope.submit = function(){ var url = $scope._datalistmodel.impexp.imp; var t_file = new FormData(document.getElementById('upload_file'));//id是form表单的id $http({ headers : { 'content-type':undefined }, url : url, data : t_file, method : 'post', transformRequest:angular.identity }).then(function(d){ }); };
标签:file上传
原文地址:http://blog.51cto.com/dd118/2125414