如何在没有jQuery的JavaScript中打开JSON文件?

前端之家收集整理的这篇文章主要介绍了如何在没有jQuery的JavaScript中打开JSON文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在JavaScript中编写一些代码。在这段代码中,我想读一个json文件。该文件将从URL加载。

如何在JavaScript中的对象中获取JSON文件内容

这是例如我的JSON文件位于../json/main.json:

{"mainStore":[{vehicle:'1',description:'nothing to say'},{vehicle:'2',{vehicle:'3',description:'nothing to say'}]}

我想在我的table.js文件中使用它:

for (var i in mainStore)
{       
    document.write('<tr class="columnHeaders">');
    document.write('<td >'+ mainStore[i]['vehicle'] + '</td>');
    document.write('<td >'+ mainStore[i]['description'] + '</td>');
    document.write('</tr>');
}

解决方法

这里有一个不需要jQuery的例子:
function loadJSON(path,success,error)
{
    var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function()
    {
        if (xhr.readyState === XMLHttpRequest.DONE) {
            if (xhr.status === 200) {
                if (success)
                    success(JSON.parse(xhr.responseText));
            } else {
                if (error)
                    error(xhr);
            }
        }
    };
    xhr.open("GET",path,true);
    xhr.send();
}

称为:

loadJSON('my-file.json',function(data) { console.log(data); },function(xhr) { console.error(xhr); }
);
原文链接:https://www.f2er.com/jquery/181655.html

猜你在找的jQuery相关文章