jQuery插件之ajaxFileUpload

jQuery插件之ajaxFileUpload
ajaxFileUpload.js 不少同名的,由于作出来一个很容易。
我用的是这个:https://github.com/carlcarl/AjaxFileUpload
下载地址在这里:http://files.cnblogs.com/files/kissdodog/ajaxfileupload_JS_File.rar
AjaxFileUpload.js并非一个很出名的插件,只是别人写好的放出来供你们用,原理都是建立隐藏的表单和iframe而后用JS去提交,得到返回值。
当初作了个异步上传的功能,选择它由于它的配置方式比较像jQuery的AJAX,我很喜欢。
评论里面说到的不行。那是由于咱们用的不是同一个js。我上github搜AjaxFileUpload出来不少相似js。
ajaxFileUpload是一个异步上传文件的jQuery插件
  传一个不知道什么版本的上来,之后不用处处找了。
  语法:.ajaxFileUpload([options])  
  options参数说明:  
一、url            上传处理程序地址。    
2,fileElementId       须要上传的文件域的ID,即的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直接打印的方法检查各参数是否正确,比起上面这些无效的错误提示仍是方便不少。javascript

  使用方法:
  第一步:先引入jQuery与ajaxFileUpload插件。注意前后顺序,这个不用说了,全部的插件都是这样。html

<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代码:java

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版本的实例:
控制器代码jquery

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代码,成功上传后,返回图片真实地址并绑定到的SRC地址git

<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>

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

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视图代码:web

<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>