🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 在自定义模型中,创建了多图字段后,想在文章里面输出多图字段的图片地址,改如何输出 * [ ] 步骤: 1. 在index应用中,找到内容管控器View.php 2. 在扩展模型中,找到如下代码 ``` //获取拓展模块的内容信息 if($classInfo\['module\_id'\]){ //获取拓展内容信息 $extInfo = db("menu")->where('menu_id',$classInfo['module_id'])->find(); $extContentInfo = db($extInfo['table_name'])->where('content_id',$content_id)->find(); /* *新增下一行代码 *对多图字体执行多图字段解析,返回纯地址的多图数组 */ $extContentInfo['imgurls'] = getpics($extContentInfo['imgurls'],'99'); if($extContentInfo){ $contentInfo = array_merge($extContentInfo , $contentInfo);     } } ``` 4.前端模板使用 ``` <!--下列循环就可得到图片地址,代码html代码即可达到需要是效果--> {volist name="info['imgurls']" id="vo"} {$vo.url} {/volist} ```