el-table中加载图片问题

时间:2021-05-22 09:38:51
<el-table-column label="头像" width="100">
<template scope="scope">
<img :src="scope.row.img" width="50" height="50" class="img"/>
</template>
</el-table-column> el-table中渲染图片,一般情况下如上所示。当图片是另一个字段,要通过接口才能获取到,此时该如何处理?
使用formatter属性?去格式化指定列(图片所在列)的值,
接受一个Function传入两个参数:row和column,根据自己的需求进行处理。
貌似不行。通过接口调用那列数据的时候,会进入死循环,浪费大量的系统资源,程序还会终止。