Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/276.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript Dropzone(带文件重命名)正在工作。我需要使用PHPexcel或sheetsJS填充js表单。Can';I don’我好像没法工作_Javascript_Php_Jquery_Ajax_Phpexcel - Fatal编程技术网

Javascript Dropzone(带文件重命名)正在工作。我需要使用PHPexcel或sheetsJS填充js表单。Can';I don’我好像没法工作

Javascript Dropzone(带文件重命名)正在工作。我需要使用PHPexcel或sheetsJS填充js表单。Can';I don’我好像没法工作,javascript,php,jquery,ajax,phpexcel,Javascript,Php,Jquery,Ajax,Phpexcel,以下是我为使文件重命名正常工作所做的操作: 来自index.php: $(document).ready(function() { Dropzone.autoDiscover = false; var fileList = new Array; var i =0; $("#some-dropzone").dropzone({ addRemoveLinks: true, in

以下是我为使文件重命名正常工作所做的操作:

来自index.php:

     $(document).ready(function() {
        Dropzone.autoDiscover = false;
        var fileList = new Array;
        var i =0;
        $("#some-dropzone").dropzone({
            addRemoveLinks: true,
            init: function() {

                // Hack: Add the dropzone class to the element
                $(this.element).addClass("dropzone");

                this.on("success", function(file, serverFileName) {
                    fileList[i] = {"serverFileName" : serverFileName, "fileName" : file.name,"fileId" : i };
                    //console.log(fileList);
                    i++;

                });
                this.on("removedfile", function(file) {
                    var rmvFile = "";
                    for(f=0;f<fileList.length;f++){

                        if(fileList[f].fileName == file.name)
                        {
                            rmvFile = fileList[f].serverFileName;

                        }

                    }

                    if (rmvFile){
                        $.ajax({
                            url: "http://localhost/dropzone/sample/delete_temp_files.php",
                            type: "POST",
                            data: { "fileList" : rmvFile }
                        });
                    }
                });

            },
            url: "http://localhost/dropzone/sample/upload.php"
        });

    });
            <?php
            $ds = DIRECTORY_SEPARATOR;  // Store directory separator (DIRECTORY_SEPARATOR) to a simple variable. This is just a personal preference as we hate to type long variable name.
            $storeFolder = 'uploads'; 

            $fileList = $_POST['fileList'];
            $targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;


            if(isset($fileList)){
                unlink($targetPath.$fileList);
            }

            ?>
$(文档).ready(函数(){
Dropzone.autoDiscover=false;
var fileList=新数组;
var i=0;
$(“#一些dropzone”)。dropzone({
addRemoveLinks:是的,
init:function(){
//Hack:将dropzone类添加到元素中
$(this.element).addClass(“dropzone”);
this.on(“success”,函数(文件,服务器文件名){
fileList[i]={“serverFileName”:serverFileName,“fileName”:file.name,“fileId”:i};
//console.log(文件列表);
i++;
});
此.on(“removedfile”,函数(文件){
var rmvFile=“”;

对于(f=0;fSide注意,我可以完全取消文件重命名,我们现在确实没有业务需要。另请注意,我可以完全取消文件重命名,我们现在确实没有业务需要。
            <?php
            $ds = DIRECTORY_SEPARATOR;  // Store directory separator (DIRECTORY_SEPARATOR) to a simple variable. This is just a personal preference as we hate to type long variable name.
            $storeFolder = 'uploads'; 

            $fileList = $_POST['fileList'];
            $targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;


            if(isset($fileList)){
                unlink($targetPath.$fileList);
            }

            ?>
            <html>
            <head>

            <title>AJAX XLS TEST</title>

            </head>

            <body>
            <br/><div id="fileurl"></div>
            <pre id="out"></pre>
            <br />

            <script src="js/iemagic.js"></script>
            <script src="js/shim.js"></script>
            <script src="js/jszip.js"></script>
            <script src="js/xlsx.js"></script>
            <script>
            function to_csv(workbook) {
                var result = [];
                workbook.SheetNames.forEach(function(sheetName) {
                    var csv = XLSX.utils.sheet_to_csv(workbook.Sheets[sheetName]);
                    if(csv.length > 0){
                        result.push("SHEET: " + sheetName);
                        result.push("");
                        result.push(csv);
                    }
                });
                return result.join("\n");
            }

            function process_wb(wb) {
                var output = to_csv(wb);
                if(out.innerText === undefined) out.textContent = output;
                else out.innerText = output;
                if(typeof console !== 'undefined') console.log("output", new Date());
            }

            var url = "uploads/fw.xls";

            var oReq;
            if(window.XMLHttpRequest) oReq = new XMLHttpRequest();
            else if(window.ActiveXObject) oReq = new ActiveXObject('MSXML2.XMLHTTP.3.0');
            else throw "XHR unavailable for your browser";

            document.getElementById('fileurl').innerHTML = '<a href="' + url + '">Download file</a>';

            oReq.open("GET", url, true);

            if(typeof Uint8Array !== 'undefined') {
                oReq.responseType = "arraybuffer";
                oReq.onload = function(e) {
                    if(typeof console !== 'undefined') console.log("onload", new Date());
                    var arraybuffer = oReq.response;
                    var data = new Uint8Array(arraybuffer);
                    var arr = new Array();
                    for(var i = 0; i != data.length; ++i) arr[i] = String.fromCharCode(data[i]);
                    var wb = XLSX.read(arr.join(""), {type:"binary"});
                    process_wb(wb);
                };
            } else {
                oReq.setRequestHeader("Accept-Charset", "x-user-defined");  
                oReq.onreadystatechange = function() { if(oReq.readyState == 4 && oReq.status == 200) {
                    var ff = convertResponseBodyToText(oReq.responseBody);
                    if(typeof console !== 'undefined') console.log("onload", new Date());
                    var wb = XLSX.read(ff, {type:"binary"});
                    process_wb(wb);
                } };
            }

            oReq.send();

            </script>
            <script type="text/javascript">
                var _gaq = _gaq || [];
                _gaq.push(['_setAccount', 'UA-36810333-1']);
                _gaq.push(['_trackPageview']);

                (function() {
                    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
                })();
            </script>
            </body>
            </html>
            | Excel To Array
            |--------------------------------------------------------------------------
            | Helper function to convert excel sheet to key value array
            | Input: path to excel file, set wether excel first row are headers
            | Dependencies: PHPExcel.php include needed
            */
                    $filePath = "uploads/fw.xls";

            function excelToArray($filePath, $header=true){
                    //Create excel reader after determining the file type
                    $inputFileName = $filePath;
                    /**  Identify the type of $inputFileName  **/
                    $inputFileType = PHPExcel_IOFactory::identify($inputFileName);
                    /**  Create a new Reader of the type that has been identified  **/
                    $objReader = PHPExcel_IOFactory::createReader($inputFileType);
                    /** Set read type to read cell data onl **/
                    $objReader->setReadDataOnly(true);
                    /**  Load $inputFileName to a PHPExcel Object  **/
                    $objPHPExcel = $objReader->load($inputFileName);
                    //Get worksheet and built array with first row as header
                    $objWorksheet = $objPHPExcel->getActiveSheet();
                    //excel with first row header, use header as key
                    if($header){<SNIP>