Asp.net MVC使用swupload實現(xiàn)多圖片上傳功能
本文實例為大家分享了swupload實現(xiàn)多圖片上傳的具體代碼,供大家參考,具體內(nèi)容如下
1. 下載WebUploader
2. 將下載到的壓縮包里面的文件復(fù)制到自己的項目中
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.準備一個放圖片的容器和一個上傳按鈕
<div id="fileList"></div> <!--這是存放圖片的容器--> <div class="cp_img_jia" id="filePicker"></div> <!--這是上傳按鈕-->
5.創(chuàng)建Web Uploader實例并監(jiān)聽事件
<script type="text/javascript">
var applicationPath = window.applicationPath === "" ? "" : window.applicationPath || "../../";
$(function () {
var $ = jQuery,
$list = $('#fileList'),
// 優(yōu)化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',
// 文件接收服務(wù)端。
server: applicationPath + '/Home/UpLoadProcess',
// 選擇文件的按鈕。可選。
// 內(nèi)部根據(jù)當前運行是創(chuàng)建,可能是input元素,也可能是flash.
pick: '#filePicker',
//只允許選擇圖片
accept: {
title: 'Images',
extensions: 'gif,jpg,jpeg,bmp,png',
mimeTypes: 'image/*'
}
});
// 當有文件添加進來的時候
uploader.on('fileQueued', function (file) {
var $li = $(
'<div id="' + file.id + '" class="cp_img">' +
'<img>' +
'<div class="cp_img_jian"></div></div>'
),
$img = $li.find('img');
// $list為容器jQuery實例
$list.append($li);
// 創(chuàng)建縮略圖
// 如果為非圖片文件,可以不用調(diào)用此方法。
// thumbnailWidth x thumbnailHeight 為 100 x 100
uploader.makeThumb(file, function (error, src) {
if (error) {
$img.replaceWith('<span>不能預(yù)覽</span>');
return;
}
$img.attr('src', src);
}, thumbnailWidth, thumbnailHeight);
});
// 文件上傳過程中創(chuàng)建進度條實時顯示。
uploader.on('uploadProgress', function (file, percentage) {
var $li = $('#' + file.id),
$percent = $li.find('.progress span');
// 避免重復(fù)創(chuàng)建
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('div.error');
// 避免重復(fù)創(chuàng)建
if (!$error.length) {
$error = $('<div class="error"></div>').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');
});
//執(zhí)行刪除方法
$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
});
}
這樣就大功告成了。
由于是第一次寫博客,里面如果有寫的不詳細或不對的地方,歡迎大家指點。希望能和大家一起進步。
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
.NET實現(xiàn)XML與DataTable互轉(zhuǎn)的實例代碼
.NET實現(xiàn)XML與DataTable互轉(zhuǎn)的實例代碼,需要的朋友可以參考一下2013-03-03
巧用ASP.NET預(yù)編譯Web應(yīng)用程序規(guī)避調(diào)用延遲的方法
ASP.NET 1.x的開發(fā)人員常常聽到用戶抱怨首次調(diào)用應(yīng)用程序的時候會碰到初始化延遲。畢竟,初次請求會引發(fā)一個系列過程,包括運行庫初始化、分析、把ASPX頁面編譯成中間語言、把方法即時編譯成本地代碼等等。2011-08-08
DropDownList綁定選擇數(shù)據(jù)報錯提示異常解決方案
DropDownList控件在綁定選擇數(shù)據(jù)時提示報錯異常詳細信息為:有一個無效 SelectedValue,因為它不在項目列表中,應(yīng)該有很多新手朋友們遇到過吧,本文將給予解決方法,感興趣的朋友可以了解下,希望本對你有所幫助2013-01-01

