0

我有一个应该从文件读取到变量的函数

我想知道读取的有效性,并且想知道在执行上传操作后是否有任何方法可以检查变量的内容。

function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object
    // Loop through the FileList
    for (var i = 0, f; f = files[i]; i++) {

        var reader = new FileReader();
        parser=new DOMParser();
        // Closure to capture the file information.
        reader.onload = (function(theFile) {
            return function(e) {
                // Print the contents of the file
                //  var span = document.createElement('span');
                xmlDoc=parser.parseFromString(e.target.result,"text/xml");
                try{
                    DistributomeXML_Objects=xmlDoc.documentElement.childNodes;
                }catch(error){
                DistributomeXML_Objects=xmlDoc.childNodes;
                }
                //document.getElementById('list').insertBefore(span, null);
            };
        })(f);

        // Read in the file
        //reader.readAsDataText(f,UTF-8);
        reader.readAsText(f);
    }
    //xmlDoc.getElementsByTagName("distributome").item(0).appendChild(node);


    traverseXML(false, null, DistributomeXML_Objects, distributome.nodes, distributome.edges, distributome.references, distributomeNodes, referenceNodes);
}

我想检查 xmlDoc 是否有效。什么是不使用打印语句的好方法。

4

1 回答 1

2

您可以使用控制台和日志变量内容

console.log("my variable content",variable);

你可以在浏览器控制台中使用firebug或chrome或opera的本机控制台看到它...

于 2012-05-27T01:55:10.143 回答