我有一个在专用服务器上完美运行的php应用程序。一旦我迁移到heroku,ajax调用就开始返回错误,例如无法加载。
例如以下代码返回错误。 album_handle.php文件存在于服务器上。
var url = "album_handle.php?id=" + album_images.id;
$('#ajaxholder').load(url, "",
function(responseText, textStatus, XMLHttpRequest) {
$("#dvloader").hide();
if(textStatus == 'error') {
$('#ajaxholder').html('<p>There was an error making the AJAX request</p>');
}
}
);
答案 0 :(得分:0)
问题不在于heroku中的ajax调用。这里的ajax调用处理php gd函数。由于某些php gd函数不能在heroku上运行,因此会出现问题。