error-require 未定义。如何借助 javascript 编写 json 文件

error - require is not defined . How to write a json file with the help of javascript

我想用 Phaser 为我的平台游戏制作关卡编辑器,我将数据保存在 json 文件中。我想用 javascript 写 json 然后我搜索然后我知道我们可以先写这个 const fs = require("fs") 还有更多但是在这一行我得到错误 require is not defined .我想创建一个 json 文件。我在浏览器中使用它 windows 7. 我如何使用 require 来做到这一点。

如果有其他方法可以用js写json文件,请告知

require 在 browser/client 端不存在。另外,你也不能使用 fs ,它应该在后端实现。请使用以下方法-

function download(filename, json) {
  var element = document.createElement('a');
  element.setAttribute('href', 'data:text/plain;charset=utf-8,' + JSON.stringify(json));
  element.setAttribute('download', filename);

  element.style.display = 'none';
  document.body.appendChild(element);

  element.click();

  document.body.removeChild(element);
}