我在 github (flickrTest.html) 上托管了一个网页,我正在尝试检查与网页位于同一目录中的文件夹是否存在。托管文件夹如下所示:http: //imgur.com/a/pZWoH
我尝试使用这样的ajax调用:
$.ajax({
url: 'mapData',
error: function() {
//Ddirectory doesn't exist
console.log("ERROR: expected directory named 'mapData'. Exiting...");
return
},
success: function() {
//Directory does exist
console.log("mapData exists..");
...
但我收到了混合内容错误,因为此调用被视为 http,而我的网页所在的站点是 https。如果我包含绝对路径,我可以通过某种方式访问 mapData 的 JSON 文件。有没有办法通过https检查文件夹是否存在?