2017-04-07 15 views
1

私はblueimpのよく知られているjqueryファイルアップロードプラグインを使用してサーバー上のファイルをアップロードしています。エラーメッセージを自分の言語に変更したいが、私は固執した。ここでJqueryファイルのアップロードblueimpはエラーメッセージのテキストを変更できません

は、サーバ/ PHP/UploadHandler.phpにあり、私のビルトインUploadHandler.phpファイルの単なるエラーメッセージセクション(私はちょうど関連のセクションをコピーして、私は制限のファイル全体の原因を共有することができませんでした。)です。私はそのエラーテキストを自分の言語に変更しましたが、影響を受けていません。私はstackoverflow上のこのプラグインに関するほとんどすべての記事を読んで、私は満足のいく解決策を見つけることができませんでした。あなたの助けを待っています、事前に感謝します。ここで

class UploadHandler 
{ 

    protected $options; 

    // PHP File Upload error message codes: 
    // http://php.net/manual/en/features.file-upload.errors.php 
    protected $error_messages = array(
     1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini', 
     2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form', 
     3 => 'The uploaded file was only partially uploaded', 
     4 => 'No file was uploaded', 
     6 => 'Missing a temporary folder', 
     7 => 'Failed to write file to disk', 
     8 => 'A PHP extension stopped the file upload', 
     'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini', 
     'max_file_size' => 'File is too big', 
     'min_file_size' => 'File is too small', 
     'accept_file_types' => 'Filetype not allowed', 
     'max_number_of_files' => 'Maximum number of files exceeded', 
     'max_width' => 'Image exceeds maximum width', 
     'min_width' => 'Image requires a minimum width', 
     'max_height' => 'Image exceeds maximum height', 
     'min_height' => 'Image requires a minimum height', 
     'abort' => 'File upload aborted', 
     'image_resize' => 'Failed to resize image' 
    ); 

. 
. 
. 
. 
. 
. 
. 

は私のmain.jsファイルには、JS/main.js私はこれが誰かを助けることができると思います

$(function() { 
    'use strict'; 

    // Initialize the jQuery File Upload widget: 
    $('#fileupload').fileupload({ 
     // Uncomment the following to send cross-domain cookies: 
     //xhrFields: {withCredentials: true}, 
     url: 'server/php/' 
    }); 

    // Enable iframe cross-domain access via redirect option: 
    $('#fileupload').fileupload(
     'option', 
     'redirect', 
     window.location.href.replace(
      /\/[^\/]*$/, 
      '/cors/result.html?%s' 
     ) 
    ); 

    if (window.location.hostname === 'blueimp.github.io') { 
     // Demo settings: 
     $('#fileupload').fileupload('option', { 
      url: '//jquery-file-upload.appspot.com/', 
      // Enable image resizing, except for Android and Opera, 
      // which actually support image resizing, but fail to 
      // send Blob objects via XHR requests: 
      disableImageResize: /Android(?!.*Chrome)|Opera/ 
       .test(window.navigator.userAgent), 
      maxFileSize: 999000, 
      acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i 
     }); 
     // Upload server status check for browsers with CORS support: 
     if ($.support.cors) { 
      $.ajax({ 
       url: '//jquery-file-upload.appspot.com/', 
       type: 'HEAD' 
      }).fail(function() { 
       $('<div class="alert alert-danger"/>') 
        .text('Upload server currently unavailable - ' + 
          new Date()) 
        .appendTo('#fileupload'); 
      }); 
     } 
    } else { 
     // Load existing files: 
     $('#fileupload').addClass('fileupload-processing'); 
     $.ajax({ 
      // Uncomment the following to send cross-domain cookies: 
      //xhrFields: {withCredentials: true}, 
      url: $('#fileupload').fileupload('option', 'url'), 
      dataType: 'json', 
      context: $('#fileupload')[0] 
     }).always(function() { 
      $(this).removeClass('fileupload-processing'); 
     }).done(function (result) { 
      $(this).fileupload('option', 'done') 
       .call(this, $.Event('done'), {result: result}); 
     }); 
    } 

}); 

答えて

0

に位置しています。 "//エラーおよび情報メッセージ:"(線71の周り)

は用jquery_upload/JS

検索内部jquery.fileupload-validade.jsを探します。

メッセージを手動で変更します。

関連する問題