1

我正在尝试读取文件并更新 XML。现在我正在尝试使用 HTML5 API 和 DOMParser 来实现它,但我遇到了一些麻烦。

<script>
 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);

  }
 document.getElementById('files').addEventListener('change', handleFileSelect, false);
    </script>

我从

HTML5 File api,读取xml/文本文件并将其显示在页面上?

和我自己之前的问题

使用 PHP/JS 使用上传的文件动态填充网页

我认为我的代码中有一个错误导致 XML 文档没有被创建,我不太能够发现它,如果有任何帮助,我将不胜感激。

提前致谢

4

0 回答 0