这似乎是一个简单的问题,但现在已经有一个小时让我在这个问题上崩溃了。
我有一个表单,它接受用户使用ajax提交到服务器的文件。我面临的问题是$(this).serialize()总是返回空字符串。我已经为输入字段定义了name属性。功能也似乎是正确的任何人都可以指出,如果我错过了什么!!
这上面已经有很多类似的que,但是大多数答案都说它需要已经存在的name属性。
形式:

<form action="/upload" name="upload_form" method="POST" id="upload-form">
    <input type="file" name="file" value=""/><br />
    <input type="submit" name="submit" value="Upload"/>
    <input type="reset" name="clear" value="Clear"/>
</form>

脚本
           $(document).ready(function () {
                $('#upload-form').on('submit', function(e) {
                    e.preventDefault();
                    console.log($(this).serialize());
                    $.ajax({
                        url : $(this).attr('action'),
                        type: "POST",
                        data: $(this).serialize(),
                        success: function (data) {
                            console.log(data);
                        },
                        error: function (jXHR, textStatus, errorThrown) {
                            alert(errorThrown);
                        }
                    });
                });
            });

最佳答案

在处理文件上载时包含enctype="multipart/form-data"。使用ajax时,可以调用并使用FormData对象。所以会是这样的。

var formFile = new FormData();
        formFile.append('file',$( '#id_of_fileinput' )[0].files[0] );
 $.ajax({
           url: path_to_php,
           type:"POST",
           data: formFile,
           dataType: "json",
           processData: false, //important to include when uploading file
           contentType: false, //important to include when uploading file
           beforeSend: function(){
                $('.loading').show();
                $('.masked').show();
           },
           success: function(data){
                 //do something with data
                console.log(data);
                $('.loading').hide();
                $('.masked').hide();
            }
   });

07-24 15:37