移动端HTML5实现文件上传功能【附代码】
程序员文章站
2023-11-28 23:36:58
下面小编就为大家带来一篇移动端HTML5实现文件上传功能【附代码】。小编觉得听错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧... 16-03-25...
pc端上传文件多半用插件,引入flash都没关系,但是移动端要是还用各种冗余的插件估计得被喷死,项目里面需要做图片上传的功能,既然h5已经有相关的接口且兼容性良好,当然优先考虑用h5来实现。
用的技术主要是:
ajax
filereader
formdata
html结构:
javascript code复制内容到剪贴板
- <div class="camera-area">
- <form enctype="multipart/form-data" method="post">
- <input type="file" name="filetoupload" class="filetoupload" accept="image/*" capture="camera"/>
- <div class="upload-progress"><span></span></div>
- </form>
- <div class="thumb"></div>
- </div>
已经封装好的upload.js,依赖zepto
javascript code复制内容到剪贴板
- (function($) {
- $.extend($.fn, {
- fileupload: function(opts) {
- this.each(function() {
- var $self = $(this);
- var doms = {
- "filetoupload": $self.find(".filetoupload"),
- "thumb": $self.find(".thumb"),
- "progress": $self.find(".upload-progress")
- };
- var funs = {
- //选择文件,获取文件大小,也可以在这里获取文件格式,限制用户上传非要求格式的文件
- "fileselected": function() {
- var files = (doms.filetoupload)[0].files;
- var count = files.length;
- for (var index = 0; index < count; index++) {
- var file = files[index];
- var filesize = 0;
- if (file.size > 1024 * 1024)
- filesize = (math.round(file.size * 100 / (1024 * 1024)) / 100).tostring() + 'mb';
- else
- filesize = (math.round(file.size * 100 / 1024) / 100).tostring() + 'kb';
- }
- funs.uploadfile();
- },
- //异步上传文件
- uploadfile: function() {
- var fd = new formdata();//创建表单数据对象
- var files = (doms.filetoupload)[0].files;
- var count = files.length;
- for (var index = 0; index < count; index++) {
- var file = files[index];
- fd.append(opts.file, file);//将文件添加到表单数据中
- funs.previewimage(file);//上传前预览图片,也可以通过其他方法预览txt
- }
- var xhr = new xmlhttprequest();
- xhr.upload.addeventlistener("progress", funs.uploadprogress, false);//监听上传进度
- xhr.addeventlistener("load", funs.uploadcomplete, false);
- xhr.addeventlistener("error", opts.uploadfailed, false);
- xhr.open("post", opts.url);
- xhr.send(fd);
- },
- //文件预览
- previewimage: function(file) {
- var gallery = doms.thumb;
- var img = document.createelement("img");
- img.file = file;
- doms.thumb.html(img);
- // 使用filereader方法显示图片内容
- var reader = new filereader();
- reader.onload = (function(aimg) {
- return function(e) {
- aimg.src = e.target.result;
- };
- })(img);
- reader.readasdataurl(file);
- },
- uploadprogress: function(evt) {
- if (evt.lengthcomputable) {
- var percentcomplete = math.round(evt.loaded * 100 / evt.total);
- doms.progress.html(percentcomplete.tostring() + '%');
- }
- },
- "uploadcomplete": function(evt) {
- alert(evt.target.responsetext)
- }
- };
- doms.filetoupload.on("change", function() {
- doms.progress.find("span").width("0");
- funs.fileselected();
- });
- });
- }
- });
- })(zepto);
调用方法:
javascript code复制内容到剪贴板
- $(".camera-area").fileupload({
- "url": "savetofile.php",
- "file": "myfile"
- });
php部分:
php code复制内容到剪贴板
- <?php
- if (isset($_files['myfile'])) {
- // example:
- writelog($_files);
- move_uploaded_file($_files['myfile']['tmp_name'], "uploads/" . $_files['myfile']['name']);
- echo 'successful';
- }
- function writelog($log){
- if(is_array($log) || is_object($log)){
- $log = json_encode($log);
- }
- $log = $log."\r\n";
- file_put_contents('log.log', $log,file_append);
- }
- ?>
以上这篇移动端html5实现文件上传功能【附代码】就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
原文地址: