<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,根据自己的需求进行处理。貌似不行。通过接口调用那列数据的时候,会进入死循环,浪费大量的系统资源,程序还会终止。
原文地址:https://www.cnblogs.com/twf520/p/11008007.html
时间: 2024-11-06 03:29:07