我不知道它是否可能,但我的服务器上有一个图像,我想通过 $.ajax 函数下载并显示在我的 jquery 移动应用程序中。这是我正在使用的代码:
$.ajax({
type: "GET",
url: $url,
dataType: "jpeg",
async: true,
timeout: 90000,
success: function($data)
{
console.log("success");
},
error: function()
{
console.log("failure");
}
});
我收到一个错误,不确定这是否是正确的方法