查看图片代码 handlePicShow(fileId) { DocumentApi.fileDownload({ fileId: fileId }).then(res => { blobToBase64(res.data).then(res2 => { this.imageData = res2 }) }) this.showPictureDialog = true; },
时间: 2024-04-02 17:34:58 浏览: 170
图片查看小程序代码
4星 · 用户满意度95%
这段代码是一个 JavaScript 方法,用于显示一张图片。它接受一个 `fileId` 参数,该参数用于从服务器中获取对应的图片文件。在获取到文件后,该方法将其转换成 base64 编码格式,然后将其存储在 `this.imageData` 变量中。最后,该方法将 `showPictureDialog` 变量设置为 true,以便显示图片对话框。
阅读全文