私は小さな問題に遭遇しました。$.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"
}
]
}