blade模板中使用多图上传的数组
xuexi 2023-10-13 13:27:03 发表在:PHP 查看数:921

blade模板中使用多图上传的数组 json_decode

  @foreach (json_decode($chanpin->img) as $k=>$v)  
         <div class="inner-image">
               <img src="/uploads/{{$v}}" alt="">
                      </div>
                       @endforeach

这个主要是,上传图片时候,模型给了我的启发

//多图上传
    public function setMoreimgAttribute($moreimg)
{
    if (is_array($moreimg)) {
        $this->attributes['moreimg'] = json_encode($moreimg);
    }
}

public function getMoreimgAttribute($moreimg)
{
    return json_decode($moreimg, true);
}
//多图上传结束
最近访问时间:2025-04-30 11:16:46
知识库:340条鸣谢:TAY  备案号:蜀ICP备2024090044号