7

重複の可能性:
JavaScript を使用してファイルを読み書きする方法

javascriptを使用してファイルに読み書きするサンプルコードを提供できる人はいますか?

現在、jsonファイルから入力を読み取り、テキストボックスに表示して、ユーザーがデータを柔軟に編集できるようにしようとしています。編集したデータはjsonファイルに書き込む必要があります。

4

3 に答える 3

2

これがサンプルのhtmlファイルです。Firefoxで正常に動作することをテストしました。

<!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>
于 2012-09-04T09:34:12.723 に答える
1

ブラウザに表示された Web ページで実行されている JavaScript は、クライアント ファイル システムにアクセスできません。

しかし、あなたはAPIを使うことができます

于 2012-09-04T08:33:53.120 に答える
0

(JavaScriptでのファイルプログラミングはありません)JavaScriptでjsonを解析することを意味する場合:-

  1. Douglas crockford JSON lib を解析に使用できます:- JSON.parse メソッド参照リンク:- http://www.json.org/js.html

例、

var abcd= "[{"name" : "sandeep"},{"name" :"Ramesh"}]"

abcd =JSON.parse(abcd);

for (var index=0;index<abcd.length;index++){

alert(abcd[i].name);
}
于 2012-09-04T08:41:56.687 に答える