<div class="form-row">
<label>
<span>
Input1:</span> <input type="text" id="Input1" name="Input1">
</label>
</div>
<div class="form-row">
<label>
<span>
Input2:</span> <input type="text" id="Input2" name="Input2" >
</label>
</div>
我正在尝试将这两个字段的输入保存为.json文件。 想要将存储的数据重新加载回输入字段。
onSaveClick = function() {
var fs = require("fs");
var Input1 = document.getElementById("Input1").value;
var Input2 = document.getElementById("Input2").value;
var sampleObject = {
};
fs.writeFile("./object.json", JSON.stringify(sampleObject), (err) => {
if (err) {
console.error(err);
return;
};
console.log("File has been created");
});
我似乎无法弄清楚如何将它们存储为关键和值:
var sampleObject = {
Input1: txt,
Input2: txt2,
};
答案 0 :(得分:1)
var sampleObject = { Input1: Input1, Input2: Input2 }
应该解决你的问题。