jquery上传文件

  目录

之前在项目中使用jquery,Formdata实现文件上传

jquery上传文件

现在的上传文件插件非常的多,比如在一个表单中,上传身份证照片,点击上传按钮,选好图片,上传好了,一般都提交到了一个图片服务器上,这是常规做法,但是有遇到过,有的后端同事要求我在点击form的提交按钮时,图片和输入框,下拉信息一并提交,当然,直接用form来做都不用改什么就可以,但是,如果需要更灵活的话,我选择了FormData对象配合jquery来做,具体代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<html lang="en">
<head>
<meta charset="UTF-8">
<title>upload file</title>
<script src="./jquery.js"></script>
</head>
<body>
<style>
.upload_area > div, .userType_area > div , .sendType_area > div {
border: 1px solid #DAD5D5;
padding: 10px 15px;
}
#myUploadBtn{
background-color:#1874D5;
border: none;
color: #ffffff;
padding: 5px 12px;
}
h3 {
margin: 5px 0;
}
.fileName {
margin-left: 15px;
}
.userType_area {}
.userType_area ul , .sendType_area ul {
overflow: hidden;
}
.userType_area ul li , .sendType_area ul li {
position: relative;
float: left;
padding: 2px 5px;
background-color:#1874D5;
color: #ffffff;
color: #ffffff;
margin: 0 10px;
cursor: pointer;
}
span.checkMark {
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: rgba(0,0,0,.5);
color: #fffff;
text-align: center;
}
.text_area {}
.text_area textarea {
width: 100%;
height: 120px;
}
.mes_box {
display: none;
position: absolute;
top: 20%;
left: 50%;
margin:0 0 0 -150px;
width: 300px;
height: 200px;
background-color: gray;
border-radius: 5px;
text-align: center;
}
.mes_box > .cancel {
position: absolute;
width: 30px;
height: 30px;
border-radius: 20px;
text-align: center;
line-height:23px;
color: #fff;
font-size: 25px;
right: 5px;
top: 3px;
border: 1px solid #fff;
cursor: pointer;
}
.mes_box > strong {
color: #ffffff;
display: inline-block;
margin: 70px 0;
font-size: 16px;
}
</style>
<div class="mes_box">
<span class="cancel">x</span>
<strong></strong>
</div>
<input type="file" id="choosefile" style="display:none;" />
<div class="upload_area">
<h3>上传文件</h3>
<div>
<button id="myUploadBtn">请选择您要上传的文件</button>
<span class="fileName"></span>
</div>
</div>

<div class="userType_area">
<h3>选择用户类型</h3>
<div>
<ul>
<li data-code="1">余额不足</li>
<li data-code="2">宽带到期</li>
<li data-code="3">其它</li>
</ul>
</div>
</div>

<div class="sendType_area">
<h3>选择推送触点</h3>
<div>
<ul>
<li data-code="1">辽宁联通为信号</li>
<li data-code="2">短信</li>
<li data-code="3">其它</li>
</ul>
</div>
</div>

<div class="text_area">
<h3>输入推送需求</h3>
<div>
<textarea name="" id="" cols="30" rows="10"></textarea>
</div>
</div>
<br><br><br>
<button id="sendFile" type="button" class="btn btn-primary bsok">提交</button>
<script>
(function(){
var isok = true , isover = false;
//选择文件点击事件
$('#myUploadBtn').on('click',function(){
(function(){
return $('#choosefile')[0].click();
})();
});
//上传选择文件change事件
$('#choosefile').on('change',function(){
$('.fileName').text('上传的文件名:'+$(this)[0].files[0].name);
});
//被选中函数
function checkMark($el,isDan){
var strNode = '<span class="checkMark"></span>'
if(isDan){
if($el.data('checkMark')){
$el.find('span').remove();
$el.data('checkMark', false);
}else{
$el.siblings().data('checkMark', false).find('span').remove();
$el.data('checkMark', true).append(strNode);
}

}else{
if($el.data('checkMark')){
$el.find('span').remove();
$el.data('checkMark', false);
}else{
$el.data('checkMark', true).append(strNode);
}
}

}
//获取被选中的code
function getCode($el){
var arr = [];
$el.find('li').each(function(index, el) {
if($(this).data('checkMark') == true){
arr.push($(this).data('code'));
}
});
return arr;
}
//选择用户类型添加事件
$('.userType_area li').on('click',function(){
checkMark($(this),true);
});
//推送触点添加事件
$('.sendType_area li').on('click',function(){
checkMark($(this),false);
});


//上传文件点击事件
$('#sendFile').on('click',function(){
var fd = new FormData();
var upload_file = $('#choosefile')[0].files[0];
var userType = getCode($('.userType_area'));
var sendType = getCode($('.sendType_area'));
var text = $('.text_area textarea').val();
if(upload_file){
var houz = /\.[^\.]+$/.exec(upload_file.name);
var size = upload_file.size;
}
console.log(upload_file);
if(!upload_file){
$('.mes_box').show();
$('.mes_box strong').text('请选择一个要上传的文件');
isok = false;
}else if(userType.length === 0){
$('.mes_box').show();
$('.mes_box strong').text('请选择用户类型');
isok = false;
}else if(sendType.length === 0){
$('.mes_box').show();
$('.mes_box strong').text('请选择推送触点');
isok = false;
}else if(!text){
$('.mes_box').show();
$('.mes_box strong').text('请输入推送需求');
isok = false;
}else if(houz[0] !== '.txt'){
$('.mes_box').show();
$('.mes_box strong').text('请上传以txt结尾的文件');
isok = false;
}else if(size > 4194304){
$('.mes_box').show();
$('.mes_box strong').text('您上传的文件过大,请上传小于4M的文件');
isok = false;
};
fd.append('userType',userType);
fd.append('sendType',userType);
fd.append('text',userType);
fd.append('file',upload_file);
if(isok){
$.ajax({
url: ajaxUrl + "/module/channel/checkByWhere",
type: 'POST',
cache: false,
processData: false,
contentType: false,
data: fd,
success:function(res){
$(".modal-content").mask("hide");
if(true){
$('.mes_box').show();
$('.mes_box strong').text('数据提交成功');
isover = true;
}else{
$('.mes_box').show();
$('.mes_box strong').text('服务器问题,数据提交失败');
}
},
error:function(err){
$(".modal-content").mask("hide");
$('.mes_box').show();
$('.mes_box strong').text('由于网络原因提交失败');
}
});
$(".modal-content").mask("show");//ajax提交数据出现loading蒙层
}


});

//提示框关闭按钮点击事件
$('.mes_box .cancel').on('click',function(){
$(this).parent().hide();
isok = true;
if(isover === true){
$('#createModal').remove();
$('.modal-backdrop.fade.in').remove();
}
});
})();

</script>
</body>
</html>

这是整个页面的内容,其实重要的几个点在这里:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
					$('#myUploadBtn').on('click',function(){
(function(){
return $('#choosefile')[0].click();
})();
});
上边这个函数就是把实际的input file 标签隐藏,用其他的按钮来触发弹出选择文件的窗口,
注意,不能直接用file.click()这种形式,要 (function(){
return file.click();
})();
这样做才可以调出选择文件的窗口。

再有一点,利用了h5的 var fd = new FormData(); 类,把需要上传的文件起个key值,直接放到fd实例里,
fd.append('userType',userType);
fd.append('sendType',userType);
fd.append('text',userType);
fd.append('file',upload_file);
之后用ajax直接把fd对象上传就可以了,以jquery为例
$.ajax({
url: ajaxUrl + "/module/channel/checkByWhere",
type: 'POST',
cache: false,
processData: false,//不对数据进行处理,保持2进制
contentType: false,//不对数据进行处理,保持2进制
data: fd
});