這篇文章主要為大家詳細介紹了Asp.net MVC使用swupload實現多圖片上傳功能,具有一定的參考價值,感興趣的小夥伴們可以參考一下
本文執行個體為大家分享了swupload實現多圖片上傳的具體代碼,供大家參考,具體內容如下
1. 下載WebUploader
2. 將下載到的壓縮包裡面的檔案複製到自己的項目中
3. 添加引用
<!--引入Jquery--><script src="~/Script/jquery-1.8.2.min.js"></script><!--引入Css--><link href="~/CSS/webuploader.css" rel="stylesheet" /><!--引入Js--><script src="~/Script/webuploader.js"></script>
4.準備一個放圖片的容器和一個上傳按鈕
<p id="fileList"></p> <!--這是存放圖片的容器--><p class="cp_img_jia" id="filePicker"></p> <!--這是上傳按鈕-->
5.建立Web Uploader執行個體並監聽事件
<script type="text/javascript"> var applicationPath = window.applicationPath === "" ? "" : window.applicationPath || "../../"; $(function () { var $ = jQuery, $list = $('#fileList'), // 最佳化retina, 在retina下這個值是2 ratio = window.devicePixelRatio || 1, // 縮圖大小 thumbnailWidth = 90 * ratio, thumbnailHeight = 90 * ratio, // Web Uploader執行個體 uploader; uploader = WebUploader.create({ // 選完檔案後,是否自動上傳。 auto: false, // swf檔案路徑 swf: applicationPath + '/Script/Uploader.swf', // 檔案接收服務端。 server: applicationPath + '/Home/UpLoadProcess', // 選擇檔案的按鈕。可選。 // 內部根據當前運行是建立,可能是input元素,也可能是flash. pick: '#filePicker', //只允許選擇圖片 accept: { title: 'Images', extensions: 'gif,jpg,jpeg,bmp,png', mimeTypes: 'image/*' } }); // 當有檔案添加進來的時候 uploader.on('fileQueued', function (file) { var $li = $( '<p id="' + file.id + '" class="cp_img">' + '<img>' + '<p class="cp_img_jian"></p></p>' ), $img = $li.find('img'); // $list為容器jQuery執行個體 $list.append($li); // 建立縮圖 // 如果為非圖片檔案,可以不用調用此方法。 // thumbnailWidth x thumbnailHeight 為 100 x 100 uploader.makeThumb(file, function (error, src) { if (error) { $img.replaceWith('<span>不能預覽</span>'); return; } $img.attr('src', src); }, thumbnailWidth, thumbnailHeight); }); // 檔案上傳過程中建立進度條即時顯示。 uploader.on('uploadProgress', function (file, percentage) { var $li = $('#' + file.id), $percent = $li.find('.progress span'); // 避免重複建立 if (!$percent.length) { $percent = $('<p class="progress"><span></span></p>') .appendTo($li) .find('span'); } $percent.css('width', percentage * 100 + '%'); }); // 檔案上傳成功,給item添加成功class, 用樣式標記上傳成功。 uploader.on('uploadSuccess', function (file, response) { $('#' + file.id).addClass('upload-state-done'); }); // 檔案上傳失敗,顯示上傳出錯。 uploader.on('uploadError', function (file) { var $li = $('#' + file.id), $error = $li.find('p.error'); // 避免重複建立 if (!$error.length) { $error = $('<p class="error"></p>').appendTo($li); } $error.text('上傳失敗'); }); // 完成上傳完了,成功或者失敗,先刪除進度條。 uploader.on('uploadComplete', function (file) { $('#' + file.id).find('.progress').remove(); }); //所有檔案上傳完畢 uploader.on("uploadFinished", function () { //提交表單 }); //開始上傳 $("#ctlBtn").click(function () { uploader.upload(); }); //顯示刪除按鈕 $(".cp_img").live("mouseover", function () { $(this).children(".cp_img_jian").css('display', 'block'); }); //隱藏刪除按鈕 $(".cp_img").live("mouseout", function () { $(this).children(".cp_img_jian").css('display', 'none'); }); //執行刪除方法 $list.on("click", ".cp_img_jian", function () { var Id = $(this).parent().attr("id"); uploader.removeFile(uploader.getFile(Id,true)); $(this).parent().remove(); }); });</script>
6 在Controller裡建立一個Action用於儲存圖片並返回圖片路徑(這方法是 eflay 前輩部落格上說的)
public ActionResult UpLoadProcess(string id, string name, string type, string lastModifiedDate, int size, HttpPostedFileBase file) { string filePathName = string.Empty; string localPath = Path.Combine(HttpRuntime.AppDomainAppPath, "Upload"); if (Request.Files.Count == 0) { return Json(new { jsonrpc = 2.0, error = new { code = 102, message = "儲存失敗" }, id = "id" }); } string ex = Path.GetExtension(file.FileName); filePathName = Guid.NewGuid().ToString("N") + ex; if (!System.IO.Directory.Exists(localPath)) { System.IO.Directory.CreateDirectory(localPath); } file.SaveAs(Path.Combine(localPath, filePathName)); return Json(new { jsonrpc = "2.0", id = id, filePath = "/Upload/" + filePathName }); }
這樣就大功告成了。