w***@qq.com
w***@qq.com
  • 发布:2024-08-02 15:21
  • 更新:2024-08-02 15:21
  • 阅读:624

uniapp在真机中,blob对象无法使用,如何将收到的图片二进制数据放到Img里面显示出来

分类:uni-app
                        displayPic(data){  
                var blob=new Blob([data],{ type: 'image/jpeg' });//这个对象用不了,如何让他能在img标签显示这个图片呢  
                this.blob=URL.createObjectURL(blob);  
            },  
            videochange(res) {  
                this.display = res.detail.value;  
                var that=this;  
                if (this.display) {  
                    server=server||new UDPServer(7000,1024*25);  
                    server.listener((data)=>{  
                        that.displayPic(data.msg);  
                    },(error)=>{  
                        console.error(error);  
                    })  
                    setTimeout(()=>{  
                        this.sendudp('video:on');  
                    },500);  

                } else {  
                    server.stop();  
                    this.blob='../../static/logo.png'  
                    this.sendudp('video:off');  
                }  

            },
2024-08-02 15:21 负责人:无 分享
已邀请:

要回复问题请先登录注册