6

我是一个初学者,来自 VBA excel 编程工具。在 VBA 中读取 excel 文件,操作 excel 内容比 Filereader 和 Json 数组等 Web 工具容易得多。

我的 Json 数组文件中有以下内容。

[
  ["TWE",6000,4545.5  ],
  ["RW",1000,256.3  ]
]

我想从以下 html 文件中读取并仅显示值 253.6

你能帮助我吗。

这里是 Html 文件阅读器示例

<!DOCTYPE html>
<html>
    <head>
        <script>        
            function handleFileSelect()
            {               
                if (window.File && window.FileReader && window.FileList && window.Blob) {

                } else {
                    alert('The File APIs are not fully supported in this browser.');
                    return;
                }   

                input = document.getElementById('fileinput');
                if (!input) {
                  alert("Um, couldn't find the fileinput element.");
               }
               else if (!input.files) {
                  alert("This browser doesn't seem to support the `files` property of file inputs.");
               }
               else if (!input.files[0]) {
                  alert("Please select a file before clicking 'Load'");               
               }
               else {
                  file = input.files[0];
                  fr = new FileReader();
                  fr.onload = receivedText;
                  fr.readAsText(file);
               }
            }

            function receivedText() {           
               //result = fr.result;
               document.getElementById('editor').appendChild(document.createTextNode(fr.result))
            }           

        </script>
    </head>
    <body>
        <input type="file" id="fileinput"/>
        <input type='button' id='btnLoad' value='Load' onclick='handleFileSelect();'>
        <div id="editor"></div>
    </body>
</html>
4

1 回答 1

8

如果您将带有 fr.readAsText 的文本转换为字符串,则可以使用 JSON.parse() (请参阅:https ://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/ parse ) 将字符串转换为 JSON 对象。然后您可以像普通数组一样访问您的特定内容。

于 2013-07-18T06:31:59.253 回答