console.log不是函数 - javascript中的错误

时间:2016-10-14 00:15:37

标签: javascript console.log

我收到错误,console.log不是一个功能,但这在过去并不是一个问题。错误发生在第一个和第二个console.log并且它没有通过那里。

我有分号,所以我不确定究竟是什么问题?

document.getElementById("fileToRead").addEventListener("change",function(event) {
var input = document.getElementById("fileToRead");
//Variable for if statement to see if there is a header in the file.
var headerType = false;
console.log(input);
input = event.target.files[0];

console.log('test');

    for(var i = 0; i < input.files.length; i++){
        var files = input.files[i];
            Papa.parse(files, {
            header:headerType,
            dynamictyping:true,
            complete:function(results){
                console.log(results);
                var input = results.data;
                if(headerType === false){
                    input.forEach(function(input){
                        jsonData.theData = theData;

                        var singleEntry = {
                            "symbol"    : input[0],
                            "date"      : input[1],
                            "open"      : input[2],
                            "high"      : input[3],
                            "low"       : input[4],
                            "close"     : input[5],
                            "volume"    : input[6]
                            };

                        jsonData.theData.push(singleEntry);
                        return jsonData;
                    }); // End forEach loop
                } else {

                } // End if statement for headerType
                document.getElementById("editor").innerHTML = JSON.stringify(jsonData.theData);
                } // End Callback Complete

            }); // End PapaParse
     } // End for loop
});

我甚至评论了代码,所以这是最终结果,它仍然说console.log不是函数!

// This is for the views/admin.ejs file only
//This file describes how the Admin page works, hiding divs and working with     the data
// importing


var jsonData = {};
var theData = [];

 document.getElementById("fileToRead").addEventListener("change",function(event) {
// var input = document.getElementById("fileToRead")
// //Variable for if statement to see if there is a header in the file.
// var headerType = false;

// input = event.target.files[0];

console.log('test');

    // for(var i = 0; i < input.files.length; i++){
    //     var files = input.files[i];
    //         Papa.parse(files, {
    //         header:headerType,
    //         dynamictyping:true,
    //         complete:function(results){
    //             console.log(results);
    //             var input = results.data;
    //             if(headerType === false){
    //                 input.forEach(function(input){
    //                     jsonData.theData = theData;

    //                     var singleEntry = {
    //                         "symbol"    : input[0],
    //                         "date"      : input[1],
    //                         "open"      : input[2],
    //                         "high"      : input[3],
    //                         "low"       : input[4],
    //                         "close"     : input[5],
    //                         "volume"    : input[6]
    //                         };

    //                     jsonData.theData.push(singleEntry);
    //                     return jsonData;
    //                 }); // End forEach loop
    //             } else {

    //             } // End if statement for headerType
    //             document.getElementById("editor").innerHTML = JSON.stringify(jsonData.theData);
    //             } // End Callback Complete

    //         }); // End PapaParse
    //  } // End for loop
 });

1 个答案:

答案 0 :(得分:0)

我将控制台重新定义为代码中的一个功能!完成新手的错误......希望我不会再犯这个错误。