2 つの異なる URL に対して 2 つの異なる要求を使用し、それらを同じものとして比較しています。1 つ目は json/resume.json への取得であり、2 つ目は json/download.php への POST です。最初の呼び出しが失敗する唯一の理由は、次のいずれかです。
json/resume.json does not exist
json/resume.json does not contain valid json
グローバルな ajax エラー ハンドラを設定して getJSON からエラーを取得するか、次のような ajax を介して同じ json クエリを実行する必要があります。
$.ajax({
url: 'json/resume.json',
type: 'GET',
dataType: 'json'
success: function(response) {
console.log(response)//should come into console anyway
},
error: function(request, type, errorThrown) {
message = (type=='parseerror') ? "json is invalid" : "(" + request.status + " " + request.statusText + ").";
alert("error with request: "+message);
}
})