異步上傳文件,ajax上傳文件,jQuery插件之ajaxFileUpload

http://www.cnblogs.com/kissdodog/archive/2012/12/15/2819025.htmljavascript

1、ajaxFileUpload是一個異步上傳文件的jQuery插件。html

傳一個不知道什麼版本的上來,之後不用處處找了。前端

語法:$.ajaxFileUpload([options])java

options參數說明:jquery

一、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  當要提交自定義參數時,這個參數要設置成postajax

錯誤提示:express

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直接打印的方法檢查各參數是否正確,比起上面這些無效的錯誤提示仍是方便不少。json

使用方法:瀏覽器

第一步:先引入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'。

相關文章
相關標籤/搜索