图片流转图片地址

通过window.URL.createObjectURL可以将图片流转化为本地请求地址,然后直接通过<img src="转化后的地址"/>

  findImageByDeploymentIdAndName(this.flowImgParamData).then((res) => {

          let url = window.URL.createObjectURL(res)
          this.flowPic = url;


      }).catch(err => {
       
        this.$Message.error({
          content: '图片加载失败',
        });
      });

把img的src双向绑定flowPic即可

Logo

前往低代码交流专区

更多推荐