weixin_33725722 2016-05-15 10:26 采纳率: 0%
浏览 1065

使用Blob作为src映像

I'm storing images as blob in my MySQL BDD.
I call my node API that return me my BDD lines with JQuery Ajax :

$.ajax({
    url: "http://mydinners.fr:5280/partner",
    type: "GET",
    datatype: "json",
    contentType: "application/json; charset=utf-8",
    success: function(text){
        for(var i=0; i<text["message"].length; i++){
            var objurl = window.URL.createObjectURL(new Blob(text["message"][i]["partner_image"]));

            // text["message"][i]["image"] is an array of point like : [192,257,54,269,85,458,...]

            var module = "";
            module += "<img class='activator' src='"+objurl+"'>";

            $(".container .row").append(module);
        }
    }
});

The objurl value is something like this : "blob:http%3A//dev.mydinners.fr/e73c5c6f-562e-4b66-9d4e-7a4c8567532e"

But the image is like this : http://i.stack.imgur.com/Vhma7.png

Do you know how to translate my blob image from mysql to img ? thx.

  • 写回答

1条回答 默认 最新

  • weixin_33720452 2016-05-15 10:46
    关注

    You have to convert the array to a binary data (using Uint8Array) before creating the blob

    var binary = new Uint8Array(json.message[0].partner_image)

    This is somewhat irrelevant, but it's a working example when you use Uint8Array, I just choose my own way of fetching/printing the data

    fetch("http://mydinners.fr:5280/partner")
    .then(res => res.json())
    .then(json => {
      let binary = new Uint8Array(json.message[0].partner_image)
      let blob = new Blob([binary])
      let img = new Image()
      img.src = URL.createObjectURL(blob)
      document.body.appendChild(img)
    })

    </div>
    
    评论

    报告相同问题?

    悬赏问题

    • ¥15 高价微信红包金额尾数算法
    • ¥30 矩阵分析与古诗词意境
    • ¥15 使用uniapp把小程序转为app
    • ¥15 在win10 64位的vs打包MSI文件,放到win7 64位上安装成可执行exe文件后,点击程序不运行。
    • ¥50 大众点评用户浏览/消费记录爬虫
    • ¥15 求制作一个个人网页,
    • ¥15 寻涂色内存脚本作者有项目有市场有资源.却技术
    • ¥15 蓝桥杯c51单片机问题
    • ¥15 ajax跨域问题请求修改代码
    • ¥15 python matplotlib