swupload多圖片上傳Asp.net MVC

來源:互聯網
上載者:User

標籤:服務   css   efi   let   picker   one   upload   地址   ogr   

1. 下載WebUploader

2. 將下載到的壓縮包裡面的檔案複製到自己的項目中   

3. 添加引用

1 <!--引入Jquery-->2 <script src="~/Script/jquery-1.8.2.min.js"></script>3 <!--引入Css-->4 <link href="~/CSS/webuploader.css" rel="stylesheet" />5 <!--引入Js-->6 <script src="~/Script/webuploader.js"></script>

4.準備一個放圖片的容器和一個上傳按鈕

<div id="fileList"></div> <!--這是存放圖片的容器--><div class="cp_img_jia" id="filePicker"></div> <!--這是上傳按鈕-->

5.建立Web Uploader執行個體並監聽事件

  1 <script type="text/javascript">  2   3     var applicationPath = window.applicationPath === "" ? "" : window.applicationPath || "../../";  4     $(function () {  5         var $ = jQuery,  6         $list = $(‘#fileList‘),  7         // 最佳化retina, 在retina下這個值是2  8         ratio = window.devicePixelRatio || 1,  9         // 縮圖大小 10         thumbnailWidth = 90 * ratio, 11         thumbnailHeight = 90 * ratio, 12         // Web Uploader執行個體 13         uploader; 14         uploader = WebUploader.create({ 15             // 選完檔案後,是否自動上傳。 16             auto: false, 17  18             // swf檔案路徑 19             swf: applicationPath + ‘/Script/Uploader.swf‘, 20  21             // 檔案接收服務端。 22             server: applicationPath + ‘/Home/UpLoadProcess‘, 23  24             // 選擇檔案的按鈕。可選。 25             // 內部根據當前運行是建立,可能是input元素,也可能是flash. 26             pick: ‘#filePicker‘, 27  28             //只允許選擇圖片 29             accept: { 30                 title: ‘Images‘, 31                 extensions: ‘gif,jpg,jpeg,bmp,png‘, 32                 mimeTypes: ‘image/*‘ 33             } 34         }); 35         36         // 當有檔案添加進來的時候 37         uploader.on(‘fileQueued‘, function (file) { 38             var $li = $( 39                     ‘<div id="‘ + file.id + ‘" class="cp_img">‘ + 40                         ‘<img>‘ + 41                     ‘<div class="cp_img_jian"></div></div>‘ 42                     ), 43                 $img = $li.find(‘img‘); 44  45  46             // $list為容器jQuery執行個體 47             $list.append($li); 48  49             // 建立縮圖 50             // 如果為非圖片檔案,可以不用調用此方法。 51             // thumbnailWidth x thumbnailHeight 為 100 x 100 52             uploader.makeThumb(file, function (error, src) { 53                 if (error) { 54                     $img.replaceWith(‘<span>不能預覽</span>‘); 55                     return; 56                 } 57  58                 $img.attr(‘src‘, src); 59             }, thumbnailWidth, thumbnailHeight); 60         }); 61  62         // 檔案上傳過程中建立進度條即時顯示。 63         uploader.on(‘uploadProgress‘, function (file, percentage) { 64             var $li = $(‘#‘ + file.id), 65                 $percent = $li.find(‘.progress span‘); 66  67             // 避免重複建立 68             if (!$percent.length) { 69                 $percent = $(‘<p class="progress"><span></span></p>‘) 70                         .appendTo($li) 71                         .find(‘span‘); 72             } 73  74             $percent.css(‘width‘, percentage * 100 + ‘%‘); 75         }); 76  77         // 檔案上傳成功,給item添加成功class, 用樣式標記上傳成功。 78         uploader.on(‘uploadSuccess‘, function (file, response) { 79              80             $(‘#‘ + file.id).addClass(‘upload-state-done‘); 81         }); 82  83         // 檔案上傳失敗,顯示上傳出錯。 84         uploader.on(‘uploadError‘, function (file) { 85             var $li = $(‘#‘ + file.id), 86                 $error = $li.find(‘div.error‘); 87  88             // 避免重複建立 89             if (!$error.length) { 90                 $error = $(‘<div class="error"></div>‘).appendTo($li); 91             } 92  93             $error.text(‘上傳失敗‘); 94         }); 95  96         // 完成上傳完了,成功或者失敗,先刪除進度條。 97         uploader.on(‘uploadComplete‘, function (file) { 98             $(‘#‘ + file.id).find(‘.progress‘).remove(); 99         });100 101         //所有檔案上傳完畢102         uploader.on("uploadFinished", function ()103         {104            //提交表單105 106         });107 108         //開始上傳109         $("#ctlBtn").click(function () {110             uploader.upload();111 112         });113 114         //顯示刪除按鈕115         $(".cp_img").live("mouseover", function ()116         {117             $(this).children(".cp_img_jian").css(‘display‘, ‘block‘);118 119         });120         //隱藏刪除按鈕121         $(".cp_img").live("mouseout", function () {122             $(this).children(".cp_img_jian").css(‘display‘, ‘none‘);123 124         });125         //執行刪除方法126         $list.on("click", ".cp_img_jian", function ()127         {128             var Id = $(this).parent().attr("id");129             uploader.removeFile(uploader.getFile(Id,true));130             $(this).parent().remove();131         });132       133     });134 135 136 </script>

6 在Controller裡建立一個Action用於儲存圖片並返回圖片路徑(這方法是 eflay 前輩部落格上說的)

 1  public ActionResult UpLoadProcess(string id, string name, string type, string lastModifiedDate, int size, HttpPostedFileBase file) 2         { 3             string filePathName = string.Empty; 4  5             string localPath = Path.Combine(HttpRuntime.AppDomainAppPath, "Upload"); 6             if (Request.Files.Count == 0) 7             { 8                 return Json(new { jsonrpc = 2.0, error = new { code = 102, message = "儲存失敗" }, id = "id" }); 9             }10 11             string ex = Path.GetExtension(file.FileName);12             filePathName = Guid.NewGuid().ToString("N") + ex;13             if (!System.IO.Directory.Exists(localPath))14             {15                 System.IO.Directory.CreateDirectory(localPath);16             }17             file.SaveAs(Path.Combine(localPath, filePathName));18 19             return Json(new20             {21                 jsonrpc = "2.0",22                 id = id,23                 filePath = "/Upload/" + filePathName24             });25         26         }

這樣就大功告成了。由於是第一次寫部落格,裡面如果有寫的不詳細或不對的地方,歡迎大家指點。希望能和大家一起進步。

Demohttp://pan.baidu.com/s/1hqqvB0o

swupload多圖片上傳Asp.net MVC

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.