我浏览了这个问题的答案,但还没找到一个好的答案。
var request = new XMLHttpRequest();
request.onreadystatechange = function(){
if(request.readyState == 4 && request.status == 200){
var response = response.responseText;
window.open(response, "_blank", "location = 0, menubar = 0");
}
}
request.open("POST", "http://localhost/save.php", true)
request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
request.send("imag="+data);
以上是我的javascript代码。我确实使用http://而不是file://,我确实把文件放在了XAMPP服务器上。我也在我的save.php中使用了标题('Access-Control-Allow-Origin:*'),但是我仍然得到同样的错误。
请帮助一下......
答案 0 :(得分:0)
我终于明白了。当他们说使用http打开文件时,他们意味着两件事。
愚蠢的错误......