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
| var File = (function () { var that; var obj = function () { that = this;
window.addEventListener("load",() => { that._init() }, false); }
obj.prototype = { upload: function (options) { that._initByOptions(options); that.fileInput.click(); }, _init: function () { var ipt = document.createElement("input"); ipt.style.display = "none"; ipt.setAttribute("type", "file"); ipt.addEventListener("change", that._fileChange, false); document.body.appendChild(ipt);
that.fileInput = ipt; },
_initByOptions: function (options) { that.fileInput.value = ""; that.options = { multi: false, url: "", accept: "", param: null, uploadType:'', before: function () { }, after: function () { }, progress: function () { } };
if (options) { for (var i in options) { that.options[i] = options[i]; } }
if (that.options.multi) that.fileInput.setAttribute("multiple", "multiple"); else that.fileInput.removeAttribute("multiple");
that.fileInput.setAttribute("accept", that.options.accept || ""); },
_fileChange: function () { if (that.options.before) { var result = that.options.before(this.files); if (result == false) return; }
for (var i = 0; i < this.files.length; i++) { that._uploadFile(this.files[i]); } },
_uploadFile: function (file) { if(that.options.uploadType == 'local'){ that.options.after && that.options.after(file); return; } var xhr = new XMLHttpRequest();
xhr.upload.addEventListener("progress", function (evt) { if (evt.lengthComputable) { that.options.progress && that.options.progress(evt.loaded / evt.total); } else { } }, false);
xhr.addEventListener("load", function () {
}, false);
xhr.open("post", that.options.url);
xhr.onreadystatechange = function () { if (xhr.readyState === 4) { if (xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) { that.options.after && that.options.after(xhr.responseText, file); xhr = null; } } }
xhr.onerror = function () { that.options.error && that.options.error(); }
if ("getAsBinary" in file) { xhr.sendAsBinary(file.getAsBinary()); } else { var formData = new FormData(); formData.append("path", "default"); formData.append("upload_file", file); formData.append("type", file.name.substring(file.name.indexOf(".")));
if (that.options.param) { for (var p in that.options.param) { formData.append(p, that.options.param[p]); } }
if (me.global.token) { xhr.setRequestHeader('token', me.global.token) } xhr.send(formData); } } }
return new obj(); })();
|