发送Ajax调用以调用php文件时,我收到此文件错误:
try {
h.send(b.hasContent && b.data || null)
} catch (i) {
if (c)
throw i
}
这是我得到的错误:
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
我确信我调用的php文件具有正确的地址,因为它适用于localhost。
下面是我在jQuery中使用的ajax调用来调用文件:
$(document).ready(function(){
$.ajax({
url: 'functions/getParishes.php',
type: 'get',
dataType: 'json',
success:function(response){
var len = response.length;
$('#parish-list').empty()
for( var i = 0; i<len; i++){
$("#parish-list").append("<option value='"+response[i]['ID']+"'>"+response[i]['Name']+"</option>");
}
}
});
});
有人可以说明我可能做错了吗?