質問編集履歴

1

追記

2017/07/31 01:21

投稿

amaguri
amaguri

スコア227

test CHANGED
File without changes
test CHANGED
@@ -207,3 +207,195 @@
207
207
  </script>
208
208
 
209
209
  ```
210
+
211
+
212
+
213
+
214
+
215
+ 修正
216
+
217
+ これでもうまくいきませんでした
218
+
219
+ ```
220
+
221
+ <!-- Latest compiled and minified CSS -->
222
+
223
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
224
+
225
+
226
+
227
+ <!-- Optional theme -->
228
+
229
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
230
+
231
+
232
+
233
+ <!-- Latest compiled and minified JavaScript -->
234
+
235
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
236
+
237
+ <script type="text/javascript">
238
+
239
+ // bootstrapっぽいプログレスバーのテンプレート
240
+
241
+ var progressTemplate = "<div class=\"list-group-item\"><div class=\"progress progress-striped active\"><div class=\"progress-bar progress-bar-info\" style=\"width: 0%;\"></div></div></div>";
242
+
243
+
244
+
245
+ $(function(){
246
+
247
+
248
+
249
+ var def = $.Deferred();
250
+
251
+ var promise = def;
252
+
253
+
254
+
255
+ $(".uploadFile").change(function() {
256
+
257
+
258
+
259
+ // ファイル分タスクを作成
260
+
261
+ $.each(this.files, function(i, file){
262
+
263
+
264
+
265
+ promise = promise.pipe(function(response){
266
+
267
+
268
+
269
+ var newPromise = $.Deferred();
270
+
271
+
272
+
273
+ var formData = new FormData();
274
+
275
+ formData.enctype = "multipart/form-data";
276
+
277
+ formData.append("file", file);
278
+
279
+ $("#progress-container").append(progressTemplate);
280
+
281
+ $.ajax({
282
+
283
+ url: "/mypage/piy/add",
284
+
285
+ type: 'POST',
286
+
287
+ dataType: 'text',
288
+
289
+ data: formData,
290
+
291
+ cache: false,
292
+
293
+ contentType: false,
294
+
295
+ processData: false,
296
+
297
+ xhr: function() {
298
+
299
+ var xhr = $.ajaxSettings.xhr();
300
+
301
+ if (xhr.upload) {
302
+
303
+ xhr.upload.addEventListener('progress', function(evt) {
304
+
305
+ var percent = (evt.loaded / evt.total) * 100;
306
+
307
+ $("#progress-container").find(".progress-bar").width(percent + "%");
308
+
309
+
310
+
311
+ }, false);
312
+
313
+ }
314
+
315
+ return xhr;
316
+
317
+ },
318
+
319
+ success: function(imageData, status, xhr) {
320
+
321
+ var res = {};
322
+
323
+ try {
324
+
325
+ res = $.parseJSON(xhr.responseText);
326
+
327
+ }catch (e) {}
328
+
329
+ $("#image-files ul").append("<img class='imgView' width=100 height=100 src=\"" + res.img + "\" / >");
330
+
331
+ /*
332
+
333
+ $('<input>').attr({
334
+
335
+
336
+
337
+ type: 'hidden',
338
+
339
+ name: "img["+res.img_id+"]",
340
+
341
+ value: res.img_id,
342
+
343
+ }).appendTo('form');
344
+
345
+ */
346
+
347
+ $('<input>').attr({
348
+
349
+ type: 'textarea',
350
+
351
+ name: "body["+res.img_id+"]",
352
+
353
+ value: "",
354
+
355
+ }).appendTo('form');
356
+
357
+ },
358
+
359
+ error: function(xhr, textStatus, errorThrown) {
360
+
361
+ var res = {};
362
+
363
+ try {
364
+
365
+ res = $.parseJSON(xhr.responseText);
366
+
367
+ } catch (e) {}
368
+
369
+ alert(res.errorMessage);
370
+
371
+ },
372
+
373
+ complete: function() {
374
+
375
+ $("#progress-container").children().remove();
376
+
377
+ newPromise.resolve();
378
+
379
+ }
380
+
381
+ });
382
+
383
+ return newPromise;
384
+
385
+ });
386
+
387
+ });
388
+
389
+
390
+
391
+ def.resolve();
392
+
393
+ });
394
+
395
+ });
396
+
397
+ </script>
398
+
399
+
400
+
401
+ ```