我遇到了一个小问题。我正在尝试使用$.ajax
我在网上仔细检查过的 jQuery 调用访问 JSON 文件,并且我的 JSON 代码是有效的。当我进行调用时,它会在 JSON 中引发带有语法错误的解析错误。
您可以通过访问http://michael-nolan.com/找到错误
这是我的javascript:
$(document).ready(function()
{
$.ajax(
{ type: "GET",
url: 'projects/projects.json',
dataType: "json",
success: function(results)
{
console.log("Success!");
},
error: function(XMLHttpRequest, textStatus, errorThrown)
{
console.log(textStatus); console.log(errorThrown);
}
});
});
这是我的 JSON
{
"projects":
[
{
"title":"Adobe Suite",
"description":"Some stuff",
"imgsrc":"img/adobe_suite_description.png"
},
{
"title":"Gridlock",
"description":"Stuff",
"imgsrc":"img/gridlock_description.png"
},
{
"title":"Open Cart",
"description":"more stuff",
"imgsrc":"img/opencart_description.png"
}
]
}