我正在用 JavaScript 编写一些代码。在这段代码中,我想读取一个 json 文件。该文件将从 URL 加载。
如何在 JavaScript 中的对象中获取此 JSON 文件的包含内容?
这是例如我的 JSON 文件位于../json/main.json
:
{"mainStore":[{vehicle:'1',description:'nothing to say'},{vehicle:'2',description:'nothing to say'},{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>');
}