手记

angular 文件上传

文件上传时的处理

$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){    });};


0人推荐
随时随地看视频
慕课网APP