我正在尝试读取 XML 文件的内容。可能这是基本的 JS 东西,但我似乎无法让它工作。
我正在使用 Chrome 的实验性 Native File System API 来读取文件夹中的文件夹:
const opts = {type: 'open-directory'};
handle = await window.chooseFileSystemEntries(opts);
const entries = await handle.getEntries();
...
然后,稍后在代码中,我从主目录输入其中一个文件夹并尝试读取其中的文件。文件系统结构如下:
Directory > subdirectory > file
代码的第二部分如下所示:
var subdirHandle = await handle.getDirectory(oneOfTheFolders);
var xmlFile = await subdirHandle.getFile('subject.xml');
xmlDoc = domParser.parseFromString(xmlFile, "text/xml");
parsedNumber = document.evaluate(myXpathFce('nodeInXML'), xmlDoc, null, XPathResult.ANY_TYPE, null).iterateNext();
if(parsedNumber.childNodes.length >0){
...
我相信问题var xmlFile = await subdirHandle.getFile('subject.xml');
出在文件读取上。如果我直接从 Input 加载文件并使用FileReader()
,我能够获取内容并解析它,但是使用“目录”方法我得到 null(对于评估的文档),就像这样Uncaught (in promise) TypeError: Cannot read property 'childNodes' of null
在这里编辑是我在控制台中获得的 xmlFile 变量。我只需要从中获取内容(文本格式的 XML)