jquery組件WebUploader檔案上傳用法詳解

來源:互聯網
上載者:User

標籤:團隊   turn   檔案資訊   type   失敗   研究   tar   團隊開發   auto   

這篇文章主要為大家詳細介紹了jquery組件WebUploader檔案上傳用法,具有一定的參考價值,感興趣的小夥伴們可以參考一下

WebUploader是由Baidu WebFE(FEX)團隊開發的一個簡單的以HTML5為主,FLASH為輔的現代檔案上傳組件,下文來為各位示範一下關於jquery WebUploader檔案上傳組件的用法。

使用WebUploader還可以批量上傳檔案、支援縮圖等等眾多參數選項可設定,以及多個事件方法可調用,你可以隨心所欲的定製你要的上傳組件。

接下來我以圖片上傳執行個體,給大家講解如何使用WebUploader。

HTML

我們首先將css和相關js檔案載入。

?
123 <link rel="stylesheet" type="text/css" href="css/webuploader.css"> <script src="http://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" src="js/webuploader.min.js"></script>

然後我們需要準備一個按鈕#imgPicker,和一個用來存放添加的檔案資訊列表的容器#fileList,在body中加入如下代碼:

?
1234 <div id="uploadimg">  <div id="fileList" class="uploader-list"></div>  <div id="imgPicker">選擇圖片</div> </div>

JAVASCRIPT

首先建立Web Uploader執行個體:

?
123456789101112 var uploader = WebUploader.create({  auto: true, // 選完檔案後,是否自動上傳  swf: ‘js/Uploader.swf‘, // swf檔案路徑  server: ‘upload.php‘, // 檔案接收服務端  pick: ‘#imgPicker‘, // 選擇檔案的按鈕。可選  // 只允許選擇圖片檔案。  accept: {  title: ‘Images‘,  extensions: ‘gif,jpg,jpeg,bmp,png‘,  mimeTypes: ‘image/*‘ } });

接著監聽fileQueued事件,即當有檔案添加進來的時候,通過uploader.makeThumb來建立圖片預覽圖。

?
123456789101112131415161718192021222324 uploader.on( ‘fileQueued‘, function( file ) {  var $list = $("#fileList"),  $li = $(  ‘<div id="‘ + file.id + ‘" class="file-item thumbnail">‘ +  ‘<img>‘ +  ‘<div class="info">‘ + file.name + ‘</div>‘ +  ‘</div>‘ ),  $img = $li.find(‘img‘);      // $list為容器jQuery執行個體  $list.append( $li );    // 建立縮圖  uploader.makeThumb( file, function( error, src ) {  if ( error ) {  $img.replaceWith(‘<span>不能預覽</span>‘);  return;  }    $img.attr( ‘src‘, src );  }, 100, 100 ); //100x100為縮圖尺寸 });

最後是上傳狀態提示了,當檔案上傳過程中, 上傳成功,上傳失敗,上傳完成都分別對應uploadProgress, uploadSuccess, 
uploadError, uploadComplete事件。

?
1234567891011121314151617181920212223242526272829303132333435363738 // 檔案上傳過程中建立進度條即時顯示。 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, res ) {  console.log(res.filePath);//這裡可以得到上傳後的檔案路徑  $( ‘#‘+file.id ).addClass(‘upload-state-done‘); });   // 檔案上傳失敗,顯示上傳出錯。 uploader.on( ‘uploadError‘, function( file ) {  var $li = $( ‘#‘+file.id ),  $error = $li.find(‘div.error‘);    // 避免重複建立  if ( !$error.length ) {  $error = $(‘<div class="error"></div>‘).appendTo( $li );  }    $error.text(‘上傳失敗‘); });   // 完成上傳完了,成功或者失敗,先刪除進度條。 uploader.on( ‘uploadComplete‘, function( file ) {  $( ‘#‘+file.id ).find(‘.progress‘).remove(); });

到這裡,我們就實現了一個簡單的圖片上傳執行個體,點擊“選擇圖片”會彈出檔案選擇對話方塊,當選擇圖片後,即進入上傳圖片流程,會將圖片對應的縮圖現實在列表裡。

常用選項設定與事件調用

Web Uploader提供了豐富的API選項設定與事件調用。

常用的事件說明:

更多精彩內容,請點擊《jQuery上傳操作匯總》,《ajax上傳技術匯總》進行深入學習和研究。

jquery組件WebUploader檔案上傳用法詳解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.