jQuery Ajax文件上传


755

我可以使用以下jQuery代码使用ajax请求的POST方法执行文件上传吗?

$.ajax({
    type: "POST",
    timeout: 50000,
    url: url,
    data: dataString,
    success: function (data) {
        alert('success');
        return false;
    }
});

如果可能,我是否需要填写data部分?这是正确的方法吗?我只将文件发布到服务器端。

我一直在搜索,但是我发现是一个插件,而在我的计划中我不想使用它。至少目前是这样。


Ajax不支持文件上传,您应该改用iframe
antyrat 2010年


Answers:


596

上传文件是不是有可能通过AJAX。
您可以使用来上传文件,而无需刷新页面IFrame
您可以在此处查看更多详细信息。


更新

使用XHR2,支持通过AJAX上传文件。例如通过FormData对象,但不幸的是,所有/旧的浏览器均不支持。

FormData 支持从以下桌面浏览器版本开始。

  • IE 10以上
  • Firefox 4.0以上
  • Chrome 7+
  • Safari 5+
  • 歌剧12+

有关更多详细信息,请参见MDN链接


41
这是不支持的特定浏览器的列表:caniuse.com/#search=FormData我也没有对此进行测试,但这是FormData的polyfill gist.github.com/3120320
Ryan White,

152
具体地说,IE <10不会,对于那些懒得阅读链接的人。
凯文(Kevin)

22
@Synexis不,我们不必再等那么久了,因为所有IE的全球市场份额仅占22%,而在美国却只有27%,而且还在迅速下降。很有可能是70岁以上的人。因此,而不是由IE指示开发人员必须做什么,IE要么不得不整顿要么就退出竞争。
德鲁·考德

30
@DrewCalder大多数IE用户都是办公室工作人员,由于公司政策的原因,他们无法选择使用哪种浏览器。我认为年龄与年龄无关。我猜想大多数> 70岁的人都会让他们的后代安装Chrome或FF :)
Nicolas Connault 2014年

3
该链接确实帮助我了解了最低要求。我不必使用xhr请求。如果确实使用ajax,请确保将设置enctype"form/multipart"
发光的

316

通过ajax上传文件不再需要iframe。我最近自己做了。查看以下页面:

在AJAX和jQuery中使用HTML5文件上传

http://dev.w3.org/2006/webapi/FileAPI/#FileReader-interface

更新了答案并进行了清理。使用getSize函数检查大小或使用getType函数检查类型。添加了progressbar html和CSS代码。

var Upload = function (file) {
    this.file = file;
};

Upload.prototype.getType = function() {
    return this.file.type;
};
Upload.prototype.getSize = function() {
    return this.file.size;
};
Upload.prototype.getName = function() {
    return this.file.name;
};
Upload.prototype.doUpload = function () {
    var that = this;
    var formData = new FormData();

    // add assoc key values, this will be posts values
    formData.append("file", this.file, this.getName());
    formData.append("upload_file", true);

    $.ajax({
        type: "POST",
        url: "script",
        xhr: function () {
            var myXhr = $.ajaxSettings.xhr();
            if (myXhr.upload) {
                myXhr.upload.addEventListener('progress', that.progressHandling, false);
            }
            return myXhr;
        },
        success: function (data) {
            // your callback here
        },
        error: function (error) {
            // handle error
        },
        async: true,
        data: formData,
        cache: false,
        contentType: false,
        processData: false,
        timeout: 60000
    });
};

Upload.prototype.progressHandling = function (event) {
    var percent = 0;
    var position = event.loaded || event.position;
    var total = event.total;
    var progress_bar_id = "#progress-wrp";
    if (event.lengthComputable) {
        percent = Math.ceil(position / total * 100);
    }
    // update progressbars classes so it fits your code
    $(progress_bar_id + " .progress-bar").css("width", +percent + "%");
    $(progress_bar_id + " .status").text(percent + "%");
};

如何使用Upload类

//Change id to your id
$("#ingredient_file").on("change", function (e) {
    var file = $(this)[0].files[0];
    var upload = new Upload(file);

    // maby check size or type here with upload.getSize() and upload.getType()

    // execute upload
    upload.doUpload();
});

Progressbar HTML代码

<div id="progress-wrp">
    <div class="progress-bar"></div>
    <div class="status">0%</div>
</div>

Progressbar CSS代码

#progress-wrp {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  height: 30px;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

#progress-wrp .progress-bar {
  height: 100%;
  border-radius: 3px;
  background-color: #f39ac7;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

3
您可以或多或少地直接复制代码并使用它。只需更改一些ID名称和类名称即可。任何定制都是您自己决定的。
Ziinloader

4
请注意,myXhr似乎是全局名称以及大小,类型。另外,最好使用“ beforeSend”来扩展已经创建的XMLHttpRequest对象,而不是使用“ xhr”来创建一个然后再对其进行更改。
瓦特2012年

8
我认为我们不能像@Ziinloader那样使用它。您使用的本地方法不包括在内:writer(catchFile)。什么writer()
tandrewnichols

4
如果数据还包含少量字段以及要上传的文件,该怎么办?
raju 2014年

2
@Ziinloader这是一个非常有用的示例,我发现您已经回到并维护过几次。确实,一个答案比我所能提供的答案更重要。
定期的乔

190

可以进行Ajax发布和上传文件。我正在使用jQuery $.ajax函数加载文件。我尝试使用XHR对象,但无法在PHP的服务器端获得结果。

var formData = new FormData();
formData.append('file', $('#file')[0].files[0]);

$.ajax({
       url : 'upload.php',
       type : 'POST',
       data : formData,
       processData: false,  // tell jQuery not to process the data
       contentType: false,  // tell jQuery not to set contentType
       success : function(data) {
           console.log(data);
           alert(data);
       }
});

如您所见,您必须创建一个FormData对象,该对象为空或来自(序列化?- $('#yourForm').serialize())现有表单),然后附加输入文件。

下面是详细信息: - 如何上传使用jQuery.ajax和FORMDATA文件 - 上传文件通过jQuery,提供FORMDATA对象,并没有文件名,GET请求

对于PHP流程,您可以使用以下代码:

//print_r($_FILES);
$fileName = $_FILES['file']['name'];
$fileType = $_FILES['file']['type'];
$fileError = $_FILES['file']['error'];
$fileContent = file_get_contents($_FILES['file']['tmp_name']);

if($fileError == UPLOAD_ERR_OK){
   //Processes your file here
}else{
   switch($fileError){
     case UPLOAD_ERR_INI_SIZE:   
          $message = 'Error al intentar subir un archivo que excede el tamaño permitido.';
          break;
     case UPLOAD_ERR_FORM_SIZE:  
          $message = 'Error al intentar subir un archivo que excede el tamaño permitido.';
          break;
     case UPLOAD_ERR_PARTIAL:    
          $message = 'Error: no terminó la acción de subir el archivo.';
          break;
     case UPLOAD_ERR_NO_FILE:    
          $message = 'Error: ningún archivo fue subido.';
          break;
     case UPLOAD_ERR_NO_TMP_DIR: 
          $message = 'Error: servidor no configurado para carga de archivos.';
          break;
     case UPLOAD_ERR_CANT_WRITE: 
          $message= 'Error: posible falla al grabar el archivo.';
          break;
     case  UPLOAD_ERR_EXTENSION: 
          $message = 'Error: carga de archivo no completada.';
          break;
     default: $message = 'Error: carga de archivo no completada.';
              break;
    }
      echo json_encode(array(
               'error' => true,
               'message' => $message
            ));
}

2
我需要引用哪个jquery库才能运行此代码?
雷登·布莱克2015年

答案写于2014年。JQuery的版本为1.10。我没有尝试使用最新版本。
pedrozopayares '16

5
formData.append('file', $('#file')[0].files[0]);返回undefinedconsole.log(formData) 没有任何东西_proto_
Yakob Ubaidi

1
IE 9不支持,以防某些情况与我一样陷入困境
CountMurphy

3
我有这个工作...捏我,我在jQuery Ajax文件上传天堂!var formData = new FormData(); formData.append('file', document.getElementById('file').files[0]); $.ajax({ url : $("form[name='uploadPhoto']").attr("action"), type : 'POST', data : formData, processData: false, // tell jQuery not to process the data contentType: false, // tell jQuery not to set contentType success : function(data) { console.log(data); alert(data); } });
塔库斯

104

简单上传表格

 <script>
   //form Submit
   $("form").submit(function(evt){	 
      evt.preventDefault();
      var formData = new FormData($(this)[0]);
   $.ajax({
       url: 'fileUpload',
       type: 'POST',
       data: formData,
       async: false,
       cache: false,
       contentType: false,
       enctype: 'multipart/form-data',
       processData: false,
       success: function (response) {
         alert(response);
       }
   });
   return false;
 });
</script>
<!--Upload Form-->
<form>
  <table>
    <tr>
      <td colspan="2">File Upload</td>
    </tr>
    <tr>
      <th>Select File </th>
      <td><input id="csv" name="csv" type="file" /></td>
    </tr>
    <tr>
      <td colspan="2">
        <input type="submit" value="submit"/> 
      </td>
    </tr>
  </table>
</form>


先生,本示例中使用的js是什么,是否有针对该示例的特定jquery插件。是链接stackoverflow.com/questions/28644200/...
布朗曼·雷维瓦尔

19
$(this)[0]这个
machineaddict

2
服务器上发布文件的参数是什么?能否请您发布服务器部分。
FrenkyB

@FrenkyB和其他-服务器上的文件(在PHP中)未存储在$ _POST变量中,而是存储在$ _FILES变量中。在这种情况下,您将使用$ _FILES [“ csv”]访问它,因为“ csv”是输入标签的名称属性。
dev_masta

68

我为此很晚,但是我正在寻找一个基于Ajax的图像上传解决方案,而我一直在寻找的答案在整个文章中都有些分散。我确定的解决方案涉及FormData对象。我组装了代码的基本形式。您可以看到它演示了如何使用fd.append()向表单添加自定义字段,以及如何在ajax请求完成后处理响应数据。

上载html:

<!DOCTYPE html>
<html>
<head>
    <title>Image Upload Form</title>
    <script src="//code.jquery.com/jquery-1.9.1.js"></script>
    <script type="text/javascript">
        function submitForm() {
            console.log("submit event");
            var fd = new FormData(document.getElementById("fileinfo"));
            fd.append("label", "WEBUPLOAD");
            $.ajax({
              url: "upload.php",
              type: "POST",
              data: fd,
              processData: false,  // tell jQuery not to process the data
              contentType: false   // tell jQuery not to set contentType
            }).done(function( data ) {
                console.log("PHP Output:");
                console.log( data );
            });
            return false;
        }
    </script>
</head>

<body>
    <form method="post" id="fileinfo" name="fileinfo" onsubmit="return submitForm();">
        <label>Select a file:</label><br>
        <input type="file" name="file" required />
        <input type="submit" value="Upload" />
    </form>
    <div id="output"></div>
</body>
</html>

如果您使用的是php,这是一种处理上传的方法,其中包括利用上面html中演示的两个自定义字段。

Upload.php

<?php
if ($_POST["label"]) {
    $label = $_POST["label"];
}
$allowedExts = array("gif", "jpeg", "jpg", "png");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/x-png")
|| ($_FILES["file"]["type"] == "image/png"))
&& ($_FILES["file"]["size"] < 200000)
&& in_array($extension, $allowedExts)) {
    if ($_FILES["file"]["error"] > 0) {
        echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
    } else {
        $filename = $label.$_FILES["file"]["name"];
        echo "Upload: " . $_FILES["file"]["name"] . "<br>";
        echo "Type: " . $_FILES["file"]["type"] . "<br>";
        echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
        echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";

        if (file_exists("uploads/" . $filename)) {
            echo $filename . " already exists. ";
        } else {
            move_uploaded_file($_FILES["file"]["tmp_name"],
            "uploads/" . $filename);
            echo "Stored in: " . "uploads/" . $filename;
        }
    }
} else {
    echo "Invalid file";
}
?>

Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https,知道这是为什么了,所以先生,我
照原样

2
@HogRider-如果您通过Google搜索错误消息,这是第一个结果:stackoverflow.com/questions/10752055 / ...您是通过本地访问网页还是file://使用Web服务器访问网页?顺便说一句,最佳实践是在没有先理解的情况下盲目地复制和粘贴代码。我建议您逐行阅读代码,以便在使用代码之前了解正在发生的事情。
colincameron

@colincameron感谢您澄清了我确实逐行通过的一些内容,但我并不太了解,所以我提出了问题,以便有人可以澄清我的疑问。我正在通过xampp来使用本地,确切地说。我可以问一个可能让您澄清的问题吗?
布朗曼复兴

@Brownman Revival:我知道现在为时已晚。.您收到跨源错误,因为您打开html文件作为文件,而不是从服务器运行它。
Adarsh Mohan

@AdarshMohan我很赞赏答复,您如何建议我做到这一点呢?
布朗曼复兴

31

使用确实可以上传AJAX XMLHttpRequest()。无需iframe。可以显示上传进度。

有关详细信息,请参见:回答https://stackoverflow.com/a/4943774/873282以质疑jQuery Upload Progress和AJAX文件上传


24
不幸的是IE <10不支持此功能。
Sasha Chedygov

1
当您只想引用另一页作为答案时,您可以将其作为dupkucate投票关闭或在问题下发表评论。这篇文章不是答案。这种帖子看起来像是在尝试销售代表。
mickmackusa

17

这是我的工作方式:

的HTML

<input type="file" id="file">
<button id='process-file-button'>Process</button>

JS

$('#process-file-button').on('click', function (e) {
    let files = new FormData(), // you can consider this as 'data bag'
        url = 'yourUrl';

    files.append('fileName', $('#file')[0].files[0]); // append selected file to the bag named 'file'

    $.ajax({
        type: 'post',
        url: url,
        processData: false,
        contentType: false,
        data: files,
        success: function (response) {
            console.log(response);
        },
        error: function (err) {
            console.log(err);
        }
    });
});

的PHP

if (isset($_FILES) && !empty($_FILES)) {
    $file = $_FILES['fileName'];
    $name = $file['name'];
    $path = $file['tmp_name'];


    // process your file

}

2
$('#file')[0].files[0]<form>
有用的

这是完整的解决方案,PHP有点帮助。
cdsaenz

14

如果您想这样做:

$.upload( form.action, new FormData( myForm))
.progress( function( progressEvent, upload) {
    if( progressEvent.lengthComputable) {
        var percent = Math.round( progressEvent.loaded * 100 / progressEvent.total) + '%';
        if( upload) {
            console.log( percent + ' uploaded');
        } else {
            console.log( percent + ' downloaded');
        }
    }
})
.done( function() {
    console.log( 'Finished upload');                    
});

https://github.com/lgersman/jquery.orangevolt-ampere/blob/master/src/jquery.upload.js

可能是您的解决方案。


$对象中的上载方法在哪里,上面的链接不存在
最酷的


2
感谢您发布答案!请务必仔细阅读有关自我促销常见问题解答。另请注意,每次链接到您自己的站点/产品,都必须发布免责声明。
Andrew Barber 2013年


13
$("#submit_car").click( function() {
  var formData = new FormData($('#car_cost_form')[0]);
$.ajax({
       url: 'car_costs.php',
       data: formData,
       async: false,
       contentType: false,
       processData: false,
       cache: false,
       type: 'POST',
       success: function(data)
       {
       },
     })    return false;    
});

编辑:注意contentype和处理数据您可以简单地使用它通过Ajax上传文件……提交的输入不能在form元素之外:)


3
使用此方法,您可以发布表单,但不能发布“文件”类型字段。这个问题专门关于文件上传。
约翰·约翰

11

2019更新:

html

<form class="fr" method='POST' enctype="multipart/form-data"> {% csrf_token %}
<textarea name='text'>
<input name='example_image'>
<button type="submit">
</form>

js

$(document).on('submit', '.fr', function(){

    $.ajax({ 
        type: 'post', 
        url: url, <--- you insert proper URL path to call your views.py function here.
        enctype: 'multipart/form-data',
        processData: false,
        contentType: false,
        data: new FormData(this) ,
        success: function(data) {
             console.log(data);
        }
        });
        return false;

    });

views.py

form = ThisForm(request.POST, request.FILES)

if form.is_valid():
    text = form.cleaned_data.get("text")
    example_image = request.FILES['example_image']

1
如何改善已经给出的答案?这个答案还提到了一个views.py文件,它是Django,与问题无关。
dirkgroten

6
因为使用Django时,这个问题表现得相当明显,而且如果您使用的是Django,则在解决该问题上没有太多指导。我以为我会提供主动帮助,以防万一有人像我将来那样到达这里。有一个艰难的一天?
杰(Jay)

9

使用FormData。它真的很好:-) ...

var jform = new FormData();
jform.append('user',$('#user').val());
jform.append('image',$('#image').get(0).files[0]); // Here's the important bit

$.ajax({
    url: '/your-form-processing-page-url-here',
    type: 'POST',
    data: jform,
    dataType: 'json',
    mimeType: 'multipart/form-data', // this too
    contentType: false,
    cache: false,
    processData: false,
    success: function(data, status, jqXHR){
        alert('Hooray! All is well.');
        console.log(data);
        console.log(status);
        console.log(jqXHR);

    },
    error: function(jqXHR,status,error){
        // Hopefully we should never reach here
        console.log(jqXHR);
        console.log(status);
        console.log(error);
    }
});

这是什么:('user',$('#user')。val());
rahim.nagori

id =“ user”的文本框被追加到@ rahim.nagori形式
Alp Altunel

7

通过ajax从预览中删除不需要的文件后,我实现了具有即时预览和上传功能的多个文件选择。

可以在这里找到详细的文档:http : //anasthecoder.blogspot.ae/2014/12/multi-file-select-preview-without.html

演示:http : //jsfiddle.net/anas/6v8Kz/7/embedded/result/

jsFiddle:http : //jsfiddle.net/anas/6v8Kz/7/

Javascript:

    $(document).ready(function(){
    $('form').submit(function(ev){
        $('.overlay').show();
        $(window).scrollTop(0);
        return upload_images_selected(ev, ev.target);
    })
})
function add_new_file_uploader(addBtn) {
    var currentRow = $(addBtn).parent().parent();
    var newRow = $(currentRow).clone();
    $(newRow).find('.previewImage, .imagePreviewTable').hide();
    $(newRow).find('.removeButton').show();
    $(newRow).find('table.imagePreviewTable').find('tr').remove();
    $(newRow).find('input.multipleImageFileInput').val('');
    $(addBtn).parent().parent().parent().append(newRow);
}

function remove_file_uploader(removeBtn) {
    $(removeBtn).parent().parent().remove();
}

function show_image_preview(file_selector) {
    //files selected using current file selector
    var files = file_selector.files;
    //Container of image previews
    var imageContainer = $(file_selector).next('table.imagePreviewTable');
    //Number of images selected
    var number_of_images = files.length;
    //Build image preview row
    var imagePreviewRow = $('<tr class="imagePreviewRow_0"><td valign=top style="width: 510px;"></td>' +
        '<td valign=top><input type="button" value="X" title="Remove Image" class="removeImageButton" imageIndex="0" onclick="remove_selected_image(this)" /></td>' +
        '</tr> ');
    //Add image preview row
    $(imageContainer).html(imagePreviewRow);
    if (number_of_images > 1) {
        for (var i =1; i<number_of_images; i++) {
            /**
             *Generate class name of the respective image container appending index of selected images, 
             *sothat we can match images selected and the one which is previewed
             */
            var newImagePreviewRow = $(imagePreviewRow).clone().removeClass('imagePreviewRow_0').addClass('imagePreviewRow_'+i);
            $(newImagePreviewRow).find('input[type="button"]').attr('imageIndex', i);
            $(imageContainer).append(newImagePreviewRow);
        }
    }
    for (var i = 0; i < files.length; i++) {
        var file = files[i];
        /**
         * Allow only images
         */
        var imageType = /image.*/;
        if (!file.type.match(imageType)) {
          continue;
        }

        /**
         * Create an image dom object dynamically
         */
        var img = document.createElement("img");

        /**
         * Get preview area of the image
         */
        var preview = $(imageContainer).find('tr.imagePreviewRow_'+i).find('td:first');

        /**
         * Append preview of selected image to the corresponding container
         */
        preview.append(img); 

        /**
         * Set style of appended preview(Can be done via css also)
         */
        preview.find('img').addClass('previewImage').css({'max-width': '500px', 'max-height': '500px'});

        /**
         * Initialize file reader
         */
        var reader = new FileReader();
        /**
         * Onload event of file reader assign target image to the preview
         */
        reader.onload = (function(aImg) { return function(e) { aImg.src = e.target.result; }; })(img);
        /**
         * Initiate read
         */
        reader.readAsDataURL(file);
    }
    /**
     * Show preview
     */
    $(imageContainer).show();
}

function remove_selected_image(close_button)
{
    /**
     * Remove this image from preview
     */
    var imageIndex = $(close_button).attr('imageindex');
    $(close_button).parents('.imagePreviewRow_' + imageIndex).remove();
}

function upload_images_selected(event, formObj)
{
    event.preventDefault();
    //Get number of images
    var imageCount = $('.previewImage').length;
    //Get all multi select inputs
    var fileInputs = document.querySelectorAll('.multipleImageFileInput');
    //Url where the image is to be uploaded
    var url= "/upload-directory/";
    //Get number of inputs
    var number_of_inputs = $(fileInputs).length; 
    var inputCount = 0;

    //Iterate through each file selector input
    $(fileInputs).each(function(index, input){

        fileList = input.files;
        // Create a new FormData object.
        var formData = new FormData();
        //Extra parameters can be added to the form data object
        formData.append('bulk_upload', '1');
        formData.append('username', $('input[name="username"]').val());
        //Iterate throug each images selected by each file selector and find if the image is present in the preview
        for (var i = 0; i < fileList.length; i++) {
            if ($(input).next('.imagePreviewTable').find('.imagePreviewRow_'+i).length != 0) {
                var file = fileList[i];
                // Check the file type.
                if (!file.type.match('image.*')) {
                    continue;
                }
                // Add the file to the request.
                formData.append('image_uploader_multiple[' +(inputCount++)+ ']', file, file.name);
            }
        }
        // Set up the request.
        var xhr = new XMLHttpRequest();
        xhr.open('POST', url, true);
        xhr.onload = function () {
            if (xhr.status === 200) {
                var jsonResponse = JSON.parse(xhr.responseText);
                if (jsonResponse.status == 1) {
                    $(jsonResponse.file_info).each(function(){
                        //Iterate through response and find data corresponding to each file uploaded
                        var uploaded_file_name = this.original;
                        var saved_file_name = this.target;
                        var file_name_input = '<input type="hidden" class="image_name" name="image_names[]" value="' +saved_file_name+ '" />';
                        file_info_container.append(file_name_input);

                        imageCount--;
                    })
                    //Decrement count of inputs to find all images selected by all multi select are uploaded
                    number_of_inputs--;
                    if(number_of_inputs == 0) {
                        //All images selected by each file selector is uploaded
                        //Do necessary acteion post upload
                        $('.overlay').hide();
                    }
                } else {
                    if (typeof jsonResponse.error_field_name != 'undefined') {
                        //Do appropriate error action
                    } else {
                        alert(jsonResponse.message);
                    }
                    $('.overlay').hide();
                    event.preventDefault();
                    return false;
                }
            } else {
                /*alert('Something went wrong!');*/
                $('.overlay').hide();
                event.preventDefault();
            }
        };
        xhr.send(formData);
    })

    return false;
}

@Bhargav:请参阅博客文章以获取解释:goo.gl/umgFFy。如果您仍然有任何疑问,请尽快回我谢谢
Ima 2015年

7

我已经用一个简单的代码处理了这些。您可以从此处下载有效的演示

对于您的情况,这些很有可能。我将逐步指导您如何使用AJAX jquery将文件上传到服务器。

首先,让我们创建一个HTML文件,以添加以下表单文件元素,如下所示。

<form action="" id="formContent" method="post" enctype="multipart/form-data" >
         <input  type="file" name="file"  required id="upload">
         <button class="submitI" >Upload Image</button> 
</form>

其次,创建一个jquery.js文件并添加以下代码来处理我们向服务器提交的文件

    $("#formContent").submit(function(e){
        e.preventDefault();

    var formdata = new FormData(this);

        $.ajax({
            url: "ajax_upload_image.php",
            type: "POST",
            data: formdata,
            mimeTypes:"multipart/form-data",
            contentType: false,
            cache: false,
            processData: false,
            success: function(){
                alert("file successfully submitted");
            },error: function(){
                alert("okey");
            }
         });
      });
    });

到此为止。查看更多


7

如许多答案所示,使用FormData是一种方法。这里有一些代码非常适合此目的。我也同意嵌套ajax块以完成复杂情况的评论。通过包含e.PreventDefault(); 以我的经验,该代码使跨浏览器更加兼容。

    $('#UploadB1').click(function(e){        
    e.preventDefault();

    if (!fileupload.valid()) {
        return false;            
    }

    var myformData = new FormData();        
    myformData.append('file', $('#uploadFile')[0].files[0]);

    $("#UpdateMessage5").html("Uploading file ....");
    $("#UpdateMessage5").css("background","url(../include/images/loaderIcon.gif) no-repeat right");

    myformData.append('mode', 'fileUpload');
    myformData.append('myid', $('#myid').val());
    myformData.append('type', $('#fileType').val());
    //formData.append('myfile', file, file.name); 

    $.ajax({
        url: 'include/fetch.php',
        method: 'post',
        processData: false,
        contentType: false,
        cache: false,
        data: myformData,
        enctype: 'multipart/form-data',
        success: function(response){
            $("#UpdateMessage5").html(response); //.delay(2000).hide(1); 
            $("#UpdateMessage5").css("background","");

            console.log("file successfully submitted");
        },error: function(){
            console.log("not okay");
        }
    });
});

这将通过jquery validate ... if(!fileupload.valid()){返回false; }
Mike Volmar '18

7

使用纯js更容易

async function saveFile(inp) 
{
    let formData = new FormData();           
    formData.append("file", inp.files[0]);
    await fetch('/upload/somedata', {method: "POST", body: formData});    
    alert('success');
}
<input type="file" onchange="saveFile(this)" >

  • 在服务器端,您可以读取原始文件名(和其他信息),该文件名会自动包含在请求中。
  • 您不需要将标题“ Content-Type”设置为“ multipart / form-data”,浏览器将自动对其进行设置
  • 该解决方案应可在所有主要浏览器上使用。

这是带有错误处理和其他json发送功能的更完善的代码段


6

是的,您可以,只需使用JavaScript即可获取文件,并确保将文件作为数据URL读取。解析base64之前的内容以实际获取base 64编码的数据,然后,如果您使用的是php或其他任何后端语言,则可以解码base 64数据并将其保存到如下所示的文件中

Javascript:
var reader = new FileReader();
reader.onloadend = function ()
{
  dataToBeSent = reader.result.split("base64,")[1];
  $.post(url, {data:dataToBeSent});
}
reader.readAsDataURL(this.files[0]);


PHP:
    file_put_contents('my.pdf', base64_decode($_POST["data"]));

当然,您可能需要进行一些验证,例如检查要处理的文件类型以及类似的内容,但这就是这个主意。


file_put_contents($ fname,file_get_contents($ _ POST ['data']));; file_get_contents处理解码和data://标头
南德

5
<html>
    <head>
        <title>Ajax file upload</title>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <script>
            $(document).ready(function (e) {
            $("#uploadimage").on('submit', (function(e) {
            e.preventDefault();
                    $.ajax({
                    url: "upload.php", // Url to which the request is send
                            type: "POST", // Type of request to be send, called as method
                            data: new FormData(this), // Data sent to server, a set of key/value pairs (i.e. form fields and values)
                            contentType: false, // The content type used when sending data to the server.
                            cache: false, // To unable request pages to be cached
                            processData:false, // To send DOMDocument or non processed data file it is set to false
                            success: function(data)   // A function to be called if request succeeds
                            {
                            alert(data);
                            }
                    });
            }));
        </script>
    </head>
    <body>
        <div class="main">
            <h1>Ajax Image Upload</h1><br/>
            <hr>
            <form id="uploadimage" action="" method="post" enctype="multipart/form-data">
                <div id="image_preview"><img id="previewing" src="noimage.png" /></div>
                <hr id="line">
                <div id="selectImage">
                    <label>Select Your Image</label><br/>
                    <input type="file" name="file" id="file" required />
                    <input type="submit" value="Upload" class="submit" />
                </div>
            </form>
        </div>
    </body>
</html>

4

您可以按以下方式使用ajaxSubmit方法:)选择需要上传到服务器的文件,然后将其提交到服务器:)

$(document).ready(function () {
    var options = {
    target: '#output',   // target element(s) to be updated with server response
    timeout: 30000,
    error: function (jqXHR, textStatus) {
            $('#output').html('have any error');
            return false;
        }
    },
    success: afterSuccess,  // post-submit callback
    resetForm: true
            // reset the form after successful submit
};

$('#idOfInputFile').on('change', function () {
    $('#idOfForm').ajaxSubmit(options);
    // always return false to prevent standard browser submit and page navigation
    return false;
});
});

2
我相信您正在谈论jquery 表单插件。除了您的答案中没有细节之外,这实际上是最好的选择。
fotanus

@fotanus你是对的!该脚本必须使用jquery表单插件来提交在jquery表单插件中定义的使用方法ajaxSubmit
Quy Le

4

要使用jquery上传用户提交的文件作为表单的一部分,请遵循以下代码:

var formData = new FormData();
formData.append("userfile", fileInputElement.files[0]);

然后将表单数据对象发送到服务器。

我们还可以将File或Blob直接附加到FormData对象。

data.append("myfile", myBlob, "filename.txt");

3

如果要使用AJAX上传文件,则可以使用以下代码进行文件上传。

$(document).ready(function() {
    var options = { 
                beforeSubmit:  showRequest,
        success:       showResponse,
        dataType: 'json' 
        }; 
    $('body').delegate('#image','change', function(){
        $('#upload').ajaxForm(options).submit();        
    }); 
});     
function showRequest(formData, jqForm, options) { 
    $("#validation-errors").hide().empty();
    $("#output").css('display','none');
    return true; 
} 
function showResponse(response, statusText, xhr, $form)  { 
    if(response.success == false)
    {
        var arr = response.errors;
        $.each(arr, function(index, value)
        {
            if (value.length != 0)
            {
                $("#validation-errors").append('<div class="alert alert-error"><strong>'+ value +'</strong><div>');
            }
        });
        $("#validation-errors").show();
    } else {
         $("#output").html("<img src='"+response.file+"' />");
         $("#output").css('display','block');
    }
}

这是用于上传文件的HTML

<form class="form-horizontal" id="upload" enctype="multipart/form-data" method="post" action="upload/image'" autocomplete="off">
    <input type="file" name="image" id="image" /> 
</form>

3

要获取所有表单输入,包括type =“ file”,您需要使用FormData对象。提交表单后,您将能够在调试器->网络->标头中查看formData内容。

var url = "YOUR_URL";

var form = $('#YOUR_FORM_ID')[0];
var formData = new FormData(form);


$.ajax(url, {
    method: 'post',
    processData: false,
    contentType: false,
    data: formData
}).done(function(data){
    if (data.success){ 
        alert("Files uploaded");
    } else {
        alert("Error while uploading the files");
    }
}).fail(function(data){
    console.log(data);
    alert("Error while uploading the files");
});

2
var dataform = new FormData($("#myform")[0]);
//console.log(dataform);
$.ajax({
    url: 'url',
    type: 'POST',
    data: dataform,
    async: false,
    success: function(res) {
        response data;
    },
    cache: false,
    contentType: false,
    processData: false
});

5
您可以通过添加一些细节改善你的答案
SR

1

这是我在想的一个主意:

Have an iframe on page and have a referencer.

具有将INPUT:File元素移动到的形式。

Form:  A processing page AND a target of the FRAME.

结果将发布到框架中,然后您可以使用以下方式将获取的数据向上一级发送到所需的图像标签:

data:image/png;base64,asdfasdfasdfasdfa

并加载页面。

我相信它对我有用,并且取决于您是否可以执行以下操作:

.aftersubmit(function(){
    stopPropigation()// or some other code which would prevent a refresh.
});

我看不出这如何改善以前给出的其他答案。也是传播而不是传播!;)
JDuarteDJ
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.