当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jQuery插件ajaxFileUpload使用详解

jQuery插件ajaxFileUpload使用详解

2019年03月30日  | 移动技术网IT编程  | 我要评论
ajaxfileupload.js 很多同名的,因为做出来一个很容易。 我用的是这个:https://github.com/carlcarl/ajaxfileupload

ajaxfileupload.js 很多同名的,因为做出来一个很容易。

我用的是这个:https://github.com/carlcarl/ajaxfileupload

下载地址在这里:

ajaxfileupload.js并不是一个很出名的插件,只是别人写好的放出来供大家用,原理都是创建隐藏的表单和iframe然后用js去提交,获得返回值。

当初做了个异步上传的功能,选择它因为它的配置方式比较像jquery的ajax,我很喜欢。

评论里面说到的不行。那是因为我们用的不是同一个js。我上github搜ajaxfileupload出来很多类似js。

ajaxfileupload是一个异步上传文件的jquery插件。

传一个不知道什么版本的上来,以后不用到处找了。

语法:$.ajaxfileupload([options])

options参数说明:

1、url            上传处理程序地址。  
2、fileelementid       需要上传的文件域的id,即<input type="file">的id。
3、secureuri        是否启用安全提交,默认为false。
4、datatype        服务器返回的数据类型。可以为xml,script,json,html。如果不填写,jquery会自动判断。
5、success        提交成功后自动执行的处理函数,参数data就是服务器返回的数据。
6、error          提交失败自动执行的处理函数。
7、data           自定义参数。这个东西比较有用,当有数据是与上传的图片相关的时候,这个东西就要用到了。
8、 type            当要提交自定义参数时,这个参数要设置成post

错误提示:

1、syntaxerror: missing ; before statement错误
  如果出现这个错误就需要检查url路径是否可以访问

2、syntaxerror: syntax error错误
  如果出现这个错误就需要检查处理提交操作的服务器后台处理程序是否存在语法错误

3、syntaxerror: invalid property id错误
  如果出现这个错误就需要检查文本域属性id是否存在

4、syntaxerror: missing } in xml expression错误
  如果出现这个错误就需要检查文件name是否一致或不存在

5、其它自定义错误
  大家可使用变量$error直接打印的方法检查各参数是否正确,比起上面这些无效的错误提示还是方便很多。

使用方法:

第一步:先引入jquery与ajaxfileupload插件。注意先后顺序,这个不用说了,所有的插件都是这样。

<script src="jquery-1.7.1.js" type="text/javascript"></script>
<script src="ajaxfileupload.js" type="text/javascript"></script>

第二步:html代码:

<body>
 <p><input type="file" id="file1" name="file" /></p>
 <input type="button" value="上传" />
 <p><img id="img1" alt="上传成功啦" src="" /></p>
</body>

第三步:js代码

 <script src="jquery-1.7.1.js" type="text/javascript"></script>
 <script src="ajaxfileupload.js" type="text/javascript"></script>
 <script type="text/javascript">
 $(function () {
 $(":button").click(function () {
 ajaxfileupload();
 })
 })
 function ajaxfileupload() {
 $.ajaxfileupload
 (
 {
  url: '/upload.aspx', //用于文件上传的服务器端请求地址
  secureuri: false, //是否需要安全协议,一般设置为false
  fileelementid: 'file1', //文件上传域的id
  datatype: 'json', //返回值类型 一般设置为json
  success: function (data, status) //服务器成功响应处理函数
  {
  $("#img1").attr("src", data.imgurl);
  if (typeof (data.error) != 'undefined') {
  if (data.error != '') {
  alert(data.error);
  } else {
  alert(data.msg);
  }
  }
  },
  error: function (data, status, e)//服务器响应失败处理函数
  {
  alert(e);
  }
 }
 )
 return false;
 }
 </script>

第四步:后台页面upload.aspx代码:

 protected void page_load(object sender, eventargs e)
 {
 httpfilecollection files = request.files;
 string msg = string.empty;
 string error = string.empty;
 string imgurl;
 if (files.count > 0)
 {
 files[0].saveas(server.mappath("/") + system.io.path.getfilename(files[0].filename));
 msg = " 成功! 文件大小为:" + files[0].contentlength;
 imgurl = "/" + files[0].filename;
 string res = "{ error:'" + error + "', msg:'" + msg + "',imgurl:'" + imgurl + "'}";
 response.write(res);
 response.end();
 }
 }

本实例完整代码下载

来一个mvc版本的实例:

控制器代码

 public class homecontroller : controller
 {
 public actionresult index()
 {
 return view();
 }

 public actionresult upload()
 {
 httpfilecollection hfc = system.web.httpcontext.current.request.files;
 string imgpath = "";
 if (hfc.count > 0)
 {
 imgpath = "/testupload" + hfc[0].filename;
 string physicalpath = server.mappath(imgpath);
 hfc[0].saveas(physicalpath);
 }
 return content(imgpath);
 }
 }

前端视图,html与js代码,成功上传后,返回图片真实地址并绑定到<img>的src地址

<html>
<head>
 <script src="/jquery-1.7.1.js" type="text/javascript"></script>
 <script src="/ajaxfileupload.js" type="text/javascript"></script>
 <script type="text/javascript">
 $(function () {
 $(":button").click(function () {
 if ($("#file1").val().length > 0) {
  ajaxfileupload();
 }
 else {
  alert("请选择图片");
 }
 })
 })
 function ajaxfileupload() {
 $.ajaxfileupload
 (
 {
  url: '/home/upload', //用于文件上传的服务器端请求地址
  secureuri: false, //一般设置为false
  fileelementid: 'file1', //文件上传空间的id属性 <input type="file" id="file" name="file" />
  datatype: 'html', //返回值类型 一般设置为json
  success: function (data, status) //服务器成功响应处理函数
  {
  alert(data);
  $("#img1").attr("src", data);
  if (typeof (data.error) != 'undefined') {
  if (data.error != '') {
  alert(data.error);
  } else {
  alert(data.msg);
  }
  }
  },
  error: function (data, status, e)//服务器响应失败处理函数
  {
  alert(e);
  }
 }
 )
 return false;
 }
 </script>
</head>
<body>
 <p><input type="file" id="file1" name="file" /></p>
 <input type="button" value="上传" />
 <p><img id="img1" alt="上传成功啦" src="" /></p>
</body>
</html>

 最后再来一个上传图片且附带参数的实例:控制器代码:

 public class homecontroller : controller
 {
 public actionresult index()
 {
 return view();
 }

 public actionresult upload()
 {
 namevaluecollection nvc = system.web.httpcontext.current.request.form;

 httpfilecollection hfc = system.web.httpcontext.current.request.files;
 string imgpath = "";
 if (hfc.count > 0)
 {
 imgpath = "/testupload" + hfc[0].filename;
 string physicalpath = server.mappath(imgpath);
 hfc[0].saveas(physicalpath);
 }
 //注意要写好后面的第二第三个参数
 return json(new { id = nvc.get("id"), name = nvc.get("name"), imgpath1 = imgpath },"text/html", jsonrequestbehavior.allowget);
 }
 }

index视图代码:

<html>
<head>
 <script src="/jquery-1.7.1.js" type="text/javascript"></script>
 <script src="/ajaxfileupload.js" type="text/javascript"></script>
 <script type="text/javascript">
 $(function () {
 $(":button").click(function () {
 if ($("#file1").val().length > 0) {
  ajaxfileupload();
 }
 else {
  alert("请选择图片");
 }
 })
 })
 function ajaxfileupload() {
 $.ajaxfileupload
 (
 {
  url: '/home/upload', //用于文件上传的服务器端请求地址
  type: 'post',
  data: { id: '123', name: 'lunis' }, //此参数非常严谨,写错一个引号都不行
  secureuri: false, //一般设置为false
  fileelementid: 'file1', //文件上传空间的id属性 <input type="file" id="file" name="file" />
  datatype: 'json', //返回值类型 一般设置为json
  success: function (data, status) //服务器成功响应处理函数
  {
  alert(data);
  $("#img1").attr("src", data.imgpath1);
  alert("你请求的id是" + data.id + " " + "你请求的名字是:" + data.name);
  if (typeof (data.error) != 'undefined') {
  if (data.error != '') {
  alert(data.error);
  } else {
  alert(data.msg);
  }
  }
  },
  error: function (data, status, e)//服务器响应失败处理函数
  {
  alert(e);
  }
 }
 )
 return false;
 }
 </script>
</head>
<body>
 <p><input type="file" id="file1" name="file" /></p>
 <input type="button" value="上传" />
 <p><img id="img1" alt="上传成功啦" src="" /></p>
</body>
</html>

此实例在显示出异步上传图片的同时并弹出自定义传输的参数。本实例

  2013年1月28日,今天调试过程中发现一个问题,就是作为文件域(<input type="file">)必须要有name属性,如果没有name属性,上传之后服务器是获取不到图片的。如:正确的写法是<input type="file" id="file1" name="file1" />

  2013年1月28日,最经典的错误终于找到原因所在了。object function (a,b){return new e.fn.init(a,b,h)} has no method 'handleerror',这个是google浏览器报的错误,非常经典, 不知道是我的版本问题还是真正存在的问题。这个问题的根源经过n次上传才找到问题的根本所在。答案是:datatype参数一定要大写。如:datatype: 'html'

  2016-07-28,评论中的一个错误:typeerror: $.ajaxfileupload is not a function   我们用的不是同一个js,你下了别的ajaxfileupload去了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网