评论

网页端生成小程序码图片显示

网页端生成小程序码图片显示,后台返回的二进制流web端转换图片显示

直接看代码

var xmlhttp;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", ajaxUrl.getCode, true);
xmlhttp.responseType = "arraybuffer";
xmlhttp.onreadystatechange = function () {
    if (this.status == 200) {
        var imageType = xmlhttp.getResponseHeader("Content-Type");
        var blob = new Blob([xmlhttp.response], { type: imageType });
        var imageUrl = (window.URL || window.webkitURL).createObjectURL(blob);
        $('#image').attr("src", imageUrl);
    }
}
var formData = new FormData();
formData.append('url', 'xxx');
formData.append('scene', 'id=xxx');
xmlhttp.send(formData)
点赞 2
收藏
评论
登录 后发表内容