网络地址图片预览 - 自动获取后缀前端图片图片预览
分享一个用到的图片预览功能
<el-image
:preview-src-list="[state.showCompanyDetail.business_license]"
:src="previewRenderFormatterImg(state.showCompanyDetail.business_license)"
alt="Business License"
class="business-license"
>
</el-image>
web/src/views/backend/routine/attachment/index.ts
export const previewRenderFormatterImg = (row: string) => {
const cellValue = row.substring(row.lastIndexOf(".") + 1);
const imgSuffix = ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'webp']
if (imgSuffix.includes(cellValue)) {
return row
}
return buildSuffixSvgUrl(cellValue)
}
url给到:http://localhost:8000/storage/default/20240129/xxxx.jpg
请先登录
好东西,支持!
不错不错,如果能把全部代码贴出啊出更好
函数和调用方法都贴出来了呀,我使用的场景是在原本buildadmin的限制了表格里面字段的预览,然后增加了一个previewRenderFormatterImg函数,这个可以存在任何文件里面,然后调用这个传入url就可以了。
例:
- 1
前往