码迷,mamicode.com
首页 > Web开发 > 详细

使用 input[type=file]上传文件

时间:2018-05-18 15:31:52      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:文件   div   ==   scope   tar   attach   $.ajax   form   for   

 1 var $file = $(‘#file‘); 
 2   $(‘#btn‘).click(function() { 
 3       var data = new FormData(); 
 4       data.append(‘file‘, $file[0].files[0]); 
 5       data.append(‘foo‘, ‘bar‘); 
 6 
 7       var xhr = new XMLHttpRequest(); 
 8       xhr.open(‘post‘, ‘/upload‘); 
 9       xhr.onload = function(e) { 
10           alert(e.currentTarget.response); 
11       } 
12       xhr.send(data); 
13   }); 
14   
15   $("#files").change(function(){
16       data = new FormData();
17       data.append(‘files‘, $(‘#files‘)[0].files[0]);
18       $.ajax({
19           type: "post",
20           url: "/wap/loanapply/uploadFileUrl",
21           processData: false,
22           contentType: false,
23           data: data,
24           success: function(_data){
25               _data = JSON.parse(_data);
26               if (_data.code == "200") {
27                   $scope.$apply(function () {
28                      $scope.formData.attachment_ids_url = _data.msg;
29                       $scope.up_success = true;
30                   });
31               } else {
32                   $layer.alert(_data.msg, 1000)
33               }
34           }
35       });
36   });

 

使用 input[type=file]上传文件

标签:文件   div   ==   scope   tar   attach   $.ajax   form   for   

原文地址:https://www.cnblogs.com/souleigh-hong/p/9056032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!