先使用XMLHttpRequest读取json

var url = "heliuline.json"
            var request = new XMLHttpRequest();
            request.open("get", url);
            request.send(null);
            request.onload = function () {
                if (request.status == 200) {
                    var json = JSON.parse(request.responseText);
                    console.log(json);
                }
            }

编辑json中的数据,比如我想对geojson数据中的数组进行编辑,在坐标数据后面追加高度数据。

for (let i = 0; i < json.features[0].geometry.coordinates.length; i++) {
      for (let j = 0; j < json.features[0].geometry.coordinates[i].length; j++) {
      json.features[0].geometry.coordinates[i][j].push(1857)
       }
    }

在JavaScript中,浏览器环境中无法直接将数据保存为JSON文件。但是你可以通过将数据转换为JSON字符串,然后让用户下载这个字符串作为一个JSON文件。

const jsonData = JSON.stringify(json);
                    const blob = new Blob([jsonData], { type:"application/json" });

                    const url = URL.createObjectURL(blob);
                    const link = document.createElement("a");
                    link.href = url;
                    link.download = "data.json";
                    link.click();

                    URL.revokeObjectURL(url);

全部代码

var url = "heliuline.json"
            var request = new XMLHttpRequest();
            request.open("get", url);
            request.send(null);
            request.onload = function () {
                if (request.status == 200) {
                    var json = JSON.parse(request.responseText);
                    console.log(json);
                    for (let i = 0; i < json.features[0].geometry.coordinates.length; i++) {
                        for (let j = 0; j < json.features[0].geometry.coordinates[i].length; j++) {
                            json.features[0].geometry.coordinates[i][j].push(1857)
                        }
                    }
                    console.log(json)
                    const jsonData = JSON.stringify(json);
                    const blob = new Blob([jsonData], { type: "application/json" });

                    const url = URL.createObjectURL(blob);
                    const link = document.createElement("a");
                    link.href = url;
                    link.download = "data.json";
                    link.click();

                    URL.revokeObjectURL(url);

                }
            }

在这个例子中,我们首先将数据转换为JSON字符串,就像之前演示的那样。然后,我们使用Blob对象创建了一个包含JSON字符串的二进制文件。接下来,我们使用URL.createObjectURL()方法为这个文件创建一个临时URL,并将这个URL分配给一个新创建的元素的href属性。然后,我们设置这个元素的download属性为想要的文件名,这里我们设置为"data.json"。最后,我们模拟用户点击了这个链接,下载JSON文件。最后,我们使用URL.revokeObjectURL()方法释放之前创建的URL。

需要注意的是,这段代码在浏览器环境中才有效,在其他环境中可能不适用。

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 3 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐