在我的代码中,我有请求类型HEAD
,但实际上我不知道有关它的详细信息。代码是这样的:
function fileExists(pUrl)
{
let fileExist = false;
$.ajax({
url:pUrl,
type:'HEAD',
async:false,
success: function()
{
//file exists
fileExist = true;
},
error: function()
{
//file not exists
fileExist = false;
}
});
return fileExist;
}
有人可以告诉我有关HEAD
的信息吗?预先感谢