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 Matlab问题解答有两个问题
  • ¥50 Oracle Kubernetes服务器集群主节点无法访问,工作节点可以访问
  • ¥15 LCD12864中文显示
  • ¥15 在使用CH341SER.EXE时不小心把所有驱动文件删除了怎么解决
  • ¥15 gsoap生成onvif框架
  • ¥15 有关sql server business intellige安装,包括SSDT、SSMS。
  • ¥15 stm32的can接口不能收发数据
  • ¥15 目标检测算法移植到arm开发板
  • ¥15 利用JD51设计温度报警系统
  • ¥15 快手联盟怎么快速的跑出建立模型