js怎么导入json文件

原创
ithorizon 1个月前 (10-19) 阅读数 23 #Javascript
在 javascript 中导入 json 文件,步骤如下:创建 xmlhttprequest 对象:const request = new xmlhttprequest();设置请求类型和 url:request.open('get', 'data.json');设置请求头:request.setrequestheader('content-type', 'application/json');发送请求:request.send();侦听响应:request.onload = function

如何在 JavaScript 中导入 JSON 文件

导入 JSON 文件的步骤:

  1. 创建 XMLHttpRequest 对象:

    const request = new XMLHttpRequest();
  2. 设置请求类型和 URL:

    request.open('GET', 'data.json');
  3. 设置请求头:

    request.setRequestHeader('Content-Type', 'application/json');
  4. 发送请求:

    request.send();
  5. 侦听响应:

    request.onload = function() {
      if (request.status === 200) {
        // 解析 JSON 文件
        const data = JSON.parse(request.responseText);
    
        // 使用数据...
      }
    };

示例:

// 创建 XMLHttpRequest 对象
const request = new XMLHttpRequest();

// 设置请求类型和 URL
request.open('GET', 'data.json');

// 设置请求头
request.setRequestHeader('Content-Type', 'application/json');

// 发送请求
request.send();

// 侦听响应
request.onload = function() {
  if (request.status === 200) {
    // 解析 JSON 文件
    const data = JSON.parse(request.responseText);

    // 输出数据
    console.log(data);
  }
};

以上就是js怎么导入json文件的详细内容,更多请关注IT视界其它相关文章!



热门