dongqiuqiu4736 2018-08-25 22:03
浏览 63

使用预览将图像上载到服务器

so I have this code to upload an image and show it's preview. It also allows you to upload multiple images and show it's preview.

However, how can I actually push this image to server now? I've tried this but it doesnt seems to be working.

HTML

<input type="file" name="albumPics" id="albumPics" style="display:none;" multiple="multiple" />

javascript

window.onload = function(){

    //Check File API support
    if(window.File && window.FileList && window.FileReader)
    {
        var filesInput = document.getElementById("albumPics");

        filesInput.addEventListener("change", function(event){

            var files = event.target.files; //FileList object
            var output = document.getElementById("albumPicsPreview");

            for(var i = 0; i< files.length; i++)
            {
                var file = files[i];
                alert(file);
                //Only pics
                if(!file.type.match('image'))
                  continue;

                var picReader = new FileReader();

                picReader.addEventListener("load",function(event){

                    var picFile = event.target;

                    var liContent = "<li><img style='height: 195px;' src='" + picFile.result + "'" + "title='" + picFile.name + "'/></li>";
                    $("#albumPicsPreview").prepend(liContent);
                    // output.html(div);          
                    // upload the image
                    $.ajax({
                    type: "POST",
                    url: "pettyURL.php",
                    data:  file,
                    enctype: 'multipart/form-data',
                    processData: false,  // tell jQuery not to process the data
                    contentType: false,   // tell jQuery not to set contentType
                    dataType: "json",
                    success: function(response)
                    {
                        // some code after succes from php
                        console.log("success");
                    },
                    beforeSend: function()
                    {
                        // some code before request send if required like LOADING....
                    }
                });

                }); //event listener

                 //Read the image
                picReader.readAsDataURL(file);
            }                               

        });
    }
    else
    {
        console.log("Your browser does not support File API");
    }
}

The ajax doesn't work here. It seems no data goes to the PHP file. How can I make it work?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 51单片机中C语言怎么做到下面类似的功能的函数(相关搜索:c语言)
    • ¥15 seatunnel 怎么配置Elasticsearch
    • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
    • ¥15 (标签-MATLAB|关键词-多址)
    • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
    • ¥500 52810做蓝牙接受端
    • ¥15 基于PLC的三轴机械手程序
    • ¥15 多址通信方式的抗噪声性能和系统容量对比
    • ¥15 msix packaging tool打包问题
    • ¥15 finalshell节点的搭建代码和那个端口代码教程