在JavaScript中,可以通过使用XMLHttpRequest对象或Fetch API来以变量的形式引用外部JSON文件。
使用XMLHttpRequest对象的方法如下:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'path/to/file.json', true);
xhr.responseType = 'json';
xhr.send();
xhr.onload = function() {
if (xhr.status === 200) {
var jsonData = xhr.response;
// 在这里可以使用jsonData变量来操作获取到的JSON数据
}
};
使用Fetch API的方法如下:
fetch('path/to/file.json')
.then(function(response) {
return response.json();
})
.then(function(jsonData) {
// 在这里可以使用jsonData变量来操作获取到的JSON数据
});
以上方法可以在JavaScript中以变量的形式引用外部JSON文件。在实际应用中,可以根据具体需求来选择使用XMLHttpRequest对象或Fetch API。
领取专属 10元无门槛券
手把手带您无忧上云