I have a html form and I want to create a json-file with data introduced in html fields.
Right now, it is visible in console json-text but it doesn’t create a new json-file with this content.
Also,I have an error, Uncaught ReferenceError: require is not defined.
JavaScript
x
56
56
1
// get the form element from dom
2
const formElement = document.querySelector('form#forms')
3
4
// convert the form to JSON
5
const getFormJSON = (form) => {
6
const data = new FormData(form);
7
return Array.from(data.keys()).reduce((result, key) => {
8
if (result[key]) {
9
result[key] = data.getAll(key)
10
return result
11
}
12
result[key] = data.get(key);
13
return result;
14
}, {});
15
};
16
17
// handle the form submission event, prevent default form behaviour, check validity, convert form to JSON
18
const handler = (event) => {
19
event.preventDefault();
20
const valid = formElement.reportValidity();
21
if (valid) {
22
const result = getFormJSON(formElement);
23
// handle one, multiple or no files uploaded
24
const images = [result.images].flat().filter((file) => !!file.name)
25
// handle one, multiple or no languages selected
26
const languages = [result.languages || []].flat();
27
// convert the checkbox to a boolean
28
const isHappyReader = !!(result.isHappyReader && result.isHappyReader === 'on')
29
30
// use spread function, but override the keys we've made changes to
31
const output = {
32
result,
33
images,
34
languages,
35
isHappyReader
36
}
37
console.log(output)
38
}
39
}
40
41
formElement.addEventListener("submit", handler)
42
43
44
45
const fs = require('fs');
46
const dataNew = JSON.stringify(output);
47
fs.writeFile('output.json', dataNew, (err) => {
48
if (err) {
49
console.log("error")
50
throw err;
51
}
52
console.log("JSON data is saved.");
53
});
54
</script>
55
</body>
56
Advertisement
Answer
It seems you are on the frontend. You can’t write files like this because of security. This would result in every website with some JavaScript being potentially able to write files to your system and you really don’t want that.
Additionally fs
is a Node API that is not available in the browser.
One option would be to download the JSON file from the frontend which you could do using the following code:
JavaScript
1
33
33
1
/**
2
* Download a JSON file.
3
* @param {sting} filename filename
4
* @param {any} obj any serializeable object
5
*/
6
function downloadJson(filename, obj) {
7
// serialize to JSON and pretty print with indent of 4
8
const text = JSON.stringify(obj, null, 4);
9
10
// create anchor tag
11
var element = document.createElement("a");
12
element.setAttribute(
13
"href",
14
"data:application/json;charset=utf-8," + encodeURIComponent(text)
15
);
16
element.setAttribute("download", filename);
17
// don't display the tag
18
element.style.display = "none";
19
// add tag to document
20
document.body.appendChild(element);
21
// click it: this starts the download
22
element.click();
23
// remove the tag again
24
document.body.removeChild(element);
25
}
26
27
window.addEventListener("DOMContentLoaded", (event) => {
28
// Start file download.
29
downloadJson("helloWorld.json", { hello: "World" });
30
});
31
32
33
If you add that to your page the save dialog will appear on a user’s system. Here the one I am getting on Ubuntu:
And here the content of the downloaded file:
Please read this thread on the pros and cons of using an approach like this.