在JavaScript中下载画布时,“不允许将顶部框架导航到数据URL”

时间:2019-07-16 22:41:40

标签: javascript download html5-canvas

在我的网站上,我正在尝试下载已创建的受污染的画布。尝试执行此操作时,出现“不允许将顶部框架导航到数据URL:”(后跟一串数据)。

我看过有关此的其他帖子,他们通常试图显示其画布或其他内容,而不是保存画布。

这是我的代码:

//it looks complicated, but the only important lines are the ones before the else statement,
function download_img(el) {
//the if statement is used to see if this is using the canvas or not
    if(document.getElementById("canvasImage").style.display != "none"){
        alert('canvas')
        var canvImg = document.getElementById("canvasImage").toDataURL("image/jpg");
        el.href = canvImg;        
    }else{
//again, this code is for the image side of the project, which works fine
        alert('image')
        var xhr = new XMLHttpRequest();
        xhr.open("GET", document.getElementById("theImg").src, true);
        xhr.responseType = "blob";
        xhr.onload = function(){
            var urlCreator = window.URL || window.webkitURL;
            var imageUrl = urlCreator.createObjectURL(this.response);
            var tag = document.createElement('a');
            tag.href = imageUrl;
            tag.download = "meme";
            document.body.appendChild(tag);
            tag.click();
            document.body.removeChild(tag);
        }
        xhr.send();       
    }
}

我的HTML:

    <a style="float:left;display:inline;" href="" onclick="download_img(this)">Canvas Button</a>

我要发生的事情是保存了画布。

1 个答案:

答案 0 :(得分:1)

download属性添加到<a>标记中,以强制其下载而不是导航。