这是我的 test.json 文件
{
"pageTitle": "Test Page",
"firstName": "Matt"
}
这是我在我的 JS 文件中访问它的方式
var jsonObj = {};
var ajaxReq = new XMLHttpRequest();
ajaxReq.overrideMimeType("application/json");
ajaxReq.open('GET', 'path/to/file/test.json', true);
ajaxReq.onreadystatechange = function ()
{
if (ajaxReq.readyState == 4)
{
jsonObj = ajaxReq.responseText;
alert(jsonObj.pageTitle);
}
}
ajaxReq.send(null);
但是当我运行脚本时,警报框会显示“未定义”。谁能告诉我我在这里做错了什么?我已经为此工作了几个小时,似乎无法找到答案。感谢您的任何帮助。