삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법

풀어 주다: 2020-01-06 17:39:32
앞으로
4428명이 탐색했습니다.

삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법

在使用layui的多图上传时发现没有删除功能

삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법

在网上搜索解决办法时有的感觉太复杂有的不符合自己所需要的所以就自己动手

삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법

下面附上代码

HTML:

<div class="layui-upload">
    <button type="button" class="layui-btn" id="test2">多图片上传</button>
    <blockquote class="layui-elem-quote layui-quote-nm" style="margin-top: 10px;width: 88%">
        预览图:
        <div class="layui-upload-list uploader-list" style="overflow: auto;" id="uploader-list">
                                    
        </div>
    </blockquote>
</div>
로그인 후 복사

CSS:

<style type="text/css">
        .uploader-list {
            margin-left: -15px;
        }
 
        .uploader-list .info {
            position: relative;
            margin-top: -25px;
            background-color: black;
            color: white;
            filter: alpha(Opacity=80);
            -moz-opacity: 0.5;
            opacity: 0.5;
            width: 100px;
            height: 25px;
            text-align: center;
            display: none;
        }
 
        .uploader-list .handle {
            position: relative;
            background-color: black;
            color: white;
            filter: alpha(Opacity=80);
            -moz-opacity: 0.5;
            opacity: 0.5;
            width: 100px;
            text-align: right;
            height: 18px;
            margin-bottom: -18px;
            display: none;
        }
 
        .uploader-list .handle i {
            margin-right: 5px;
        }
 
        .uploader-list .handle i:hover {
            cursor: pointer;
        }
 
        .uploader-list .file-iteme {
            margin: 12px 0 0 15px;
            padding: 1px;
            float: left;
        }
    </style>
로그인 후 복사

js:

upload.render({
            elem: &#39;#test2&#39;
            ,url: &#39;&#39;
            ,multiple: true
            ,before: function(obj){
                layer.msg(&#39;图片上传中...&#39;, {
                    icon: 16,
                    shade: 0.01,
                    time: 0
                })
            }
            ,done: function(res){
                layer.close(layer.msg());//关闭上传提示窗口
                //上传完毕
                $(&#39;#uploader-list&#39;).append(
                    &#39;<div id="" class="file-iteme">&#39; +
                    &#39;<div class="handle"><i class="layui-icon layui-icon-delete"></i></div>&#39; +
                    &#39;<img    style="max-width:90%" src=&#39;+ res.data.src +&#39; alt="삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법" >&#39; +
                    &#39;<div class="info">&#39; + res.data.title + &#39;</div>&#39; +
                    &#39;</div>&#39;
                );
            }
        });
로그인 후 복사
$(document).on("mouseenter mouseleave", ".file-iteme", function(event){
            if(event.type === "mouseenter"){
                //鼠标悬浮
                $(this).children(".info").fadeIn("fast");
                $(this).children(".handle").fadeIn("fast");
            }else if(event.type === "mouseleave") {
                //鼠标离开
                $(this).children(".info").hide();
                $(this).children(".handle").hide();
            }
        });
로그인 후 복사
 // 删除图片
        $(document).on("click", ".file-iteme .handle", function(event){
            $(this).parent().remove();  
        });
로그인 후 복사

thinkphp处理上传文件

public function upload(){
        //exit(ROOT_PATH . &#39;public&#39; . DS . &#39;uploads&#39;);
        // 获取表单上传文件 例如上传了00삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법
        $file = request()->file(&#39;file&#39;);
        // 移动到框架应用根目录/public/uploads/ 目录下
        if($file){
            $info = $file->validate([&#39;size&#39;=>2097152,&#39;ext&#39;=>&#39;jpg,png,gif&#39;])->move(ROOT_PATH . &#39;public&#39; . DS . &#39;uploads&#39;); //限定2MB
            if($info){
                $src=&#39;./uploads/&#39;.str_replace(&#39;\\&#39;,"/",$info->getSaveName());
                $image = Image::open($src);
                $image->thumb(750, 750)->save($src);//压缩图片大小
                $res[&#39;code&#39;]=0;
                $res[&#39;msg&#39;]=&#39;上传成功!&#39;;
                $res[&#39;data&#39;][&#39;src&#39;]=&#39;/uploads/&#39;.str_replace(&#39;\\&#39;,"/",$info->getSaveName());
                $res[&#39;data&#39;][&#39;title&#39;]=$info->getFilename();
            }else{
                // 上传失败获取错误信息
                $res[&#39;code&#39;]=1;
                $res[&#39;msg&#39;]=&#39;上传失败!&#39;.$file->getError();
            }
            return $res;
        }
    }
로그인 후 복사

更多layui知识请关注PHP中文网layui使用教程栏目。

위 내용은 삭제 기능을 구현하기 위해 Layui에 여러 이미지를 업로드하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:cnblogs.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!