我正在使用 GD 库来绘制图像,之后我将使用 jquery ajax 获取该图像。但是当我更新图像时出现问题,当我检查图像更新的目录时,jquery ajax 没有得到更新的图像。所以请在这种情况下帮助我,我将如何在 jquery ajax 响应中获取更新的图像。
我从 php 文件中获取响应的 jquery 代码如下:
jQuery.ajax({
type: "POST",
url: "create.php",
dataType:"text",
data:myData,
success:function(response){
//location.reload();
var result = response.split("|");
document.getElementById('img').innerHTML = result[0]; // This is the image
document.getElementById('download').innerHTML = result[1]; // this is a href link for some other purpose
},
error:function (xhr, ajaxOptions, thrownError){
alert(thrownError);
}
});
在这种情况下请帮助我。谢谢