重複の可能性:
JavaScript を使用してファイルを読み書きする方法
javascriptを使用してファイルに読み書きするサンプルコードを提供できる人はいますか?
現在、jsonファイルから入力を読み取り、テキストボックスに表示して、ユーザーがデータを柔軟に編集できるようにしようとしています。編集したデータはjsonファイルに書き込む必要があります。
重複の可能性:
JavaScript を使用してファイルを読み書きする方法
javascriptを使用してファイルに読み書きするサンプルコードを提供できる人はいますか?
現在、jsonファイルから入力を読み取り、テキストボックスに表示して、ユーザーがデータを柔軟に編集できるようにしようとしています。編集したデータはjsonファイルに書き込む必要があります。
これがサンプルの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>
ブラウザに表示された Web ページで実行されている JavaScript は、クライアント ファイル システムにアクセスできません。
しかし、あなたはAPIを使うことができます
(JavaScriptでのファイルプログラミングはありません)JavaScriptでjsonを解析することを意味する場合:-
例、
var abcd= "[{"name" : "sandeep"},{"name" :"Ramesh"}]"
abcd =JSON.parse(abcd);
for (var index=0;index<abcd.length;index++){
alert(abcd[i].name);
}