|
10 | 10 |
|
11 | 11 | ---
|
12 | 12 |
|
13 |
| -### 获取文件对象 |
| 13 | +### 通过文件选择框获取文件对象 |
14 | 14 |
|
15 |
| -```markup |
16 |
| -<input type="file" id="files" name="files[]" multiple /> |
17 |
| -<output id="list"></output> |
18 |
| -<script> |
19 |
| - function handleFileSelect(evt) { |
20 |
| - var files = evt.target.files; |
| 15 | +* 监听`<input type="file">`的`change`事件 |
| 16 | +* 通过 input.files 属性获取文件对象列表 |
21 | 17 |
|
22 |
| - var output = []; |
23 |
| - for (var i = 0, f; f = files[i]; i++) { |
24 |
| - output.push('<li><strong>', escape(f.name), '</strong> (', f.type || 'n/a', ') - ', |
25 |
| - f.size, ' bytes, last modified: ', |
26 |
| - f.lastModifiedDate.toLocaleDateString(), '</li>'); |
27 |
| - } |
28 |
| - document.getElementById('list').innerHTML = '<ul>' + output.join('') + '</ul>'; |
29 |
| - } |
30 |
| - document.getElementById('files').addEventListener('change', handleFileSelect, false); |
31 |
| -</script> |
32 |
| -``` |
| 18 | +--- |
| 19 | + |
| 20 | +### [Demo](http://jsbin.com/jarice/edit?js,output) |
| 21 | + |
| 22 | +--- |
| 23 | + |
| 24 | +### 通过拖拽获取文件对象 |
| 25 | + |
| 26 | +* 选定一个可拖放的区域 |
| 27 | +* 给这个元素绑定dragenter、dragover事件并组织默认行为 |
| 28 | +* 绑定drop事件,通过 e.dataTransfer.files 获取文件对象 |
| 29 | + |
| 30 | +--- |
| 31 | + |
| 32 | +### [Demo](http://jsbin.com/yogamu/4/edit?html,js,output) |
| 33 | + |
| 34 | +--- |
| 35 | + |
| 36 | +### 读取文件内容 |
| 37 | + |
| 38 | +* fileReader.readAsBinaryString(Blob|File) |
| 39 | +* fileReader.readAsText(Blob|File, opt_encoding) |
| 40 | +* fileReader.readAsDataURL(Blob|File) |
| 41 | +* fileReader.readAsArrayBuffer(Blob|File) |
| 42 | + |
| 43 | +--- |
| 44 | + |
| 45 | +### Blob |
| 46 | + |
| 47 | +* Binary large object |
| 48 | +* 二进制文件容器 |
| 49 | +* 可以修改 |
| 50 | + |
| 51 | +--- |
| 52 | + |
| 53 | +### [Data URL Demo](http://jsbin.com/zosine/edit?html,js,console,output) |
| 54 | + |
| 55 | +--- |
| 56 | + |
| 57 | +### [Read Text Demo](http://jsbin.com/zecabi/2/edit?html,js,output) |
33 | 58 |
|
34 | 59 | ---
|
35 | 60 |
|
36 |
| -### 读取文件 |
| 61 | +### 文件上传 |
37 | 62 |
|
38 |
| -* FileReader.readAsBinaryString(Blob|File) |
39 |
| -* FileReader.readAsText(Blob|File, opt_encoding) |
40 |
| -* FileReader.readAsDataURL(Blob|File) |
41 |
| -* FileReader.readAsArrayBuffer(Blob|File) |
| 63 | +* 使用FormData和XMLHttpRequest |
| 64 | +* 不使用FormData(上传前进行图片压缩) |
| 65 | + * fileReader.readAsBinaryString() |
| 66 | + * xmlHttpRequest.sendAsBinary() |
42 | 67 |
|
43 | 68 | ---
|
44 | 69 |
|
45 |
| -### 示例:图片处理 |
| 70 | +### [示例:图片处理](http://makeitsolutions.com/labs/jic/) |
| 71 | + |
| 72 | +--- |
| 73 | + |
| 74 | + |
| 75 | +@state: green |
| 76 | + |
| 77 | +<p style="font-size:6em"><i class="fa fa-comments"></i></p> |
0 commit comments