Multi-image ajax upload image under thinkphp

不言
Release: 2023-04-02 19:58:01
Original
1890 people have browsed it

This article mainly introduces the multi-image ajax upload image under thinkphp. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it.

When I encounter a project, there is a comparison There are 6 ajax uploads with tedious functions. Basically, the logic of each upload is different. Record the view page of

thinkphp:

id is convenient for finding this element. The name must be added [ ]

<div class="btns">
  <a href="javascript:;" class="a-upload">
    <input type="file" id="fileaq" name="fileaq[]" data-filesType="words" class="uploadInput" multiple="multiple" />
    <i class="iconfont icon-shangchuan"></i>上传附件
  </a>
  <a href="javascript:void(0)" class="submit" id="aq_sub">发布</a>
</div>
Copy after login

Click Publish to determine first, and then pass the required parameters to the doUploadFiles function

    //发布案情
        $(&#39;#aq_sub&#39;).click(function() {            
        var guanxi = &#39;many_one&#39;;            
        var type_file = &#39;file&#39;;            
        var type_name = &#39;fileaq&#39;;            
        var anqing = $(&#39;#anqing&#39;).val();            
        if ($.trim(anqing).length == 0) {
                layer.alert(&#39;请输入内容!\n&#39;);
                $(&#39;#anqing&#39;).focus();                
                return false;
            } else {                
            var cate_id = 3;
                doUploadFiles(cate_id, type_file, type_name, guanxi, anqing);
            }
        })
Copy after login

Parameter description

cate_id: identification id for multiple uploads

type_file: Determine whether it is a picture or a file upload (nofiley: some files do not need to be uploaded)

type_name: the id of the uploaded file

guanxi: relationship project requirements The parameters are divided into many_one, many_many, one_one (one data for each user, multiple data for each user, one data for each user)

content: content

function doUploadFiles(cate_id, type_file, type_name, guanxi, content) {        
var guanxi = arguments[3] ? arguments[3] : &#39;many_one&#39;; //设置关系
        var formData = new FormData();        
        var fangchan_id = $(&#39;#fangchan_id&#39;).val();
        formData.append("fangchan_id", fangchan_id);
        formData.append("cate_id", cate_id);
        formData.append("guanxi", guanxi);
        formData.append("content", content);        
        if(type_file !=&#39;nofile&#39;){
            formData.append("type_file", type_file);
            formData.append("file_length", $("#"+type_name)[0].files.length);            
            for(var i=0; i<$("#"+type_name)[0].files.length;i++){
                formData.append(&#39;file[]&#39;,$("#"+type_name)[0].files[i]);
            }
        }

        $.ajax({
            url: &#39;/Property/jindiaoHandle&#39;,
            type: &#39;POST&#39;,
            data: formData,
            dataType: "json",
            async: false,
            cache: false,
            contentType: false,
            processData: false,
            success: function(data) {
                console.log(&#39;上传:&#39;,data)                
                if (data.status == 200) {
                    layer.msg(data.msg, { icon: 1 });
                    window.location.reload();
                } else {
                    layer.msg(data.msg, { icon: 1 });                    
                    return false;
                }

            }

        });

    }
Copy after login

php The code is relatively long

/**
     * 提交房源尽调
     */
    public function jindiaoHandle()
    {
        $user_id = session(&#39;user_id&#39;);
        $fangchan_id = I(&#39;post.fangchan_id&#39;);
        $cate_id = I(&#39;post.cate_id&#39;);
        $cate_arr = array(&#39;6&#39;,&#39;7&#39;,&#39;8&#39;);
        $content = I(&#39;post.content&#39;);
        $type_file = I(&#39;post.type_file&#39;);
        $file_length = I(&#39;post.file_length&#39;);   //判断是否上传文件
        //many_one  多个用户存在一条   many_many 多个用户存在多条    one_one 只能催在一条数据
        $guanxi = I(&#39;post.guanxi&#39;);
        $guanxi?$guanxi:&#39;many_one&#39;;
        $content?$content:&#39;0&#39;;
        if(empty($user_id)){
            $ret = [&#39;status&#39; => &#39;1001&#39;, &#39;msg&#39; => &#39;请先登录!&#39;.$user_id, &#39;data&#39; => &#39;&#39;];
            $this->ajaxReturn($ret, &#39;json&#39;);
        }else{
            $level = M(&#39;users&#39;)->where([&#39;user_id&#39; => $user_id])->getField(&#39;level&#39;);
            //判断是不是法拍经理
            if ($level != 2) {
                $ret = [&#39;status&#39; => &#39;1002&#39;, &#39;msg&#39; => &#39;您没有权限填写!&#39;, &#39;data&#39; => &#39;&#39;];
                $this->ajaxReturn($ret);
            }
        }
        if(empty($fangchan_id))
        {
            $ret = [&#39;status&#39; => &#39;1003&#39;, &#39;msg&#39; => &#39;找不到此房源!&#39;, &#39;data&#39; => &#39;&#39;];
            $this->ajaxReturn($ret);
        }
        if(empty($cate_id))
        {
            $ret = [&#39;status&#39; => &#39;1004&#39;, &#39;msg&#39; => &#39;找不到此尽调类型!&#39;, &#39;data&#39; => &#39;&#39;];
            $this->ajaxReturn($ret);
        }
        if(empty($content))
        {
            $ret = [&#39;status&#39; => &#39;1005&#39;, &#39;msg&#39; => &#39;内容不能为空!&#39;, &#39;data&#39; => &#39;&#39;];
            $this->ajaxReturn($ret);

        }

        $fc_user_id = M(&#39;fangchan&#39;)->where([&#39;fangchan_id&#39; => $fangchan_id])->getField(&#39;user_id&#39;);
        //判断是不是该房产的法拍经理
        if ($fc_user_id == $user_id) {
            $data = [
                &#39;fangchan_id&#39; => $fangchan_id,
                &#39;user_id&#39;     => $user_id,
                &#39;cate_id&#39;     => $cate_id,
                &#39;content&#39;     => $content,
                &#39;res_num&#39;     => $file_length,
                &#39;add_time&#39;    => time(),
                &#39;is_user&#39;     => 1,
                &#39;is_show&#39;     => &#39;1&#39;,
            ];
        } else {
            if(!in_array($cate_id,$cate_arr))
            {
                $fc_add_time = M(&#39;fangchan&#39;)->where([&#39;fangchan_id&#39; => $fangchan_id])->getField(&#39;add_time&#39;); //获取添加时间
                if ((time() - $fc_add_time) < (12 * 60 * 60)) {
                    $arr = [&#39;status&#39; => &#39;1006&#39;, &#39;msg&#39; => &#39;请于24小时候后来发布!&#39;, &#39;data&#39; => &#39;&#39;];
                    $this->ajaxReturn($arr, &#39;json&#39;);
                }
            }
            $data = [
                &#39;fangchan_id&#39; => $fangchan_id,
                &#39;user_id&#39;     => $user_id,
                &#39;cate_id&#39;     => $cate_id,
                &#39;content&#39;     => $content,
                &#39;res_num&#39;     => $file_length,
                &#39;add_time&#39;    => time(),
                &#39;is_user&#39;    => 0,
                &#39;is_show&#39;     => &#39;1&#39;,
            ];
        }

        if($guanxi==&#39;many_one&#39;)
        {
            $fc_jindiao_data = M(&#39;fangchan_jindiao&#39;)
                ->where([&#39;fangchan_id&#39;=>$fangchan_id,&#39;user_id&#39;=>$user_id,&#39;cate_id&#39;=>$cate_id])
                ->getField(&#39;jindiao_id&#39;);
            //判断房产尽调是修改还是添加
            if($fc_jindiao_data){
                $res_edit = M(&#39;fangchan_jindiao&#39;)->where(&#39;jindiao_id=&#39;.$fc_jindiao_data)->save($data);
            }else{
                $res_add = M(&#39;fangchan_jindiao&#39;)->add($data);
            }
        }elseif($guanxi==&#39;one_one&#39;)
        {
            $fc_jindiao_data = M(&#39;fangchan_jindiao&#39;)
                ->where([&#39;fangchan_id&#39;=>$fangchan_id,&#39;cate_id&#39;=>$cate_id])
                ->getField(&#39;jindiao_id&#39;);
            //判断房产尽调是修改还是添加
            if($fc_jindiao_data){
                $res_edit = M(&#39;fangchan_jindiao&#39;)->where(&#39;jindiao_id=&#39;.$fc_jindiao_data)->save($data);
            }else{
                $res_add = M(&#39;fangchan_jindiao&#39;)->add($data);
            }
        }elseif($guanxi==&#39;many_many&#39;)
        {
            $res_add = M(&#39;fangchan_jindiao&#39;)->add($data);
        }


        //判断是否有文件
        if(!empty($file_length) || $file_length!=0)
        {
            $result = self::uploadFile($type_file);
            if($result[&#39;status&#39;] == -1){
                exit(json_encode(array("status"=>-1,"msg"=>$result[&#39;msg&#39;],&#39;result&#39;=>&#39;&#39;)));
            }

            $add_time = time();
            if(!empty($res_edit))
            {
                $where=array(&#39;user_id&#39; => $user_id,&#39;fangchan_id&#39; => $fangchan_id,&#39;cate_id&#39;=> $cate_id);
                $r_info = M(&#39;fangchan_jindiao&#39;)->where($where)
                    ->getField(&#39;jindiao_id&#39;);

                if($r_info)
                {
                    foreach ($result[&#39;result&#39;] as $v)
                    {
                        if($type_file==&#39;file&#39;)
                        {
                            $data=array(&#39;user_id&#39; => $user_id,&#39;fangchan_id&#39; => $fangchan_id,&#39;cate_id&#39;=> $cate_id,&#39;add_time&#39;=> $add_time,&#39;jindiao_id&#39;=> $r_info,&#39;file&#39;=>$v);
                            $ziyuan_info = M("fangchan_jdresources")->data($data)->add();
                        }elseif($type_file==&#39;image&#39;)
                        {
                            $data=array(&#39;user_id&#39; => $user_id,&#39;fangchan_id&#39; => $fangchan_id,&#39;cate_id&#39;=> $cate_id,&#39;add_time&#39;=> $add_time,&#39;jindiao_id&#39;=> $r_info,&#39;images&#39;=>$v);
                            $ziyuan_info = M("fangchan_jdresources")->data($data)->add();
                        }

                    }


                    if($ziyuan_info)
                    {
                        $ret =[
                            &#39;status&#39;=>200,
                            &#39;msg&#39;=>&#39;上传成功&#39;,
                            &#39;data&#39;=> $data
                        ];
                    }else{
                        $ret =[
                            &#39;status&#39;=>1009,
                            &#39;msg&#39;=>&#39;上传资源失败&#39;,
                            &#39;data&#39;=> &#39;&#39;
                        ];
                    }
                }else{
                    $ret =[
                        &#39;status&#39;=>1008,
                        &#39;msg&#39;=>&#39;上传资源失败&#39;,
                        &#39;data&#39;=> &#39;&#39;
                    ];
                }
            }elseif(!empty($res_add))
            {
                foreach ($result[&#39;result&#39;] as $v)
                {
                    if($type_file==&#39;file&#39;)
                    {
                        $data=array(&#39;user_id&#39; => $user_id,&#39;fangchan_id&#39; => $fangchan_id,&#39;cate_id&#39;=> $cate_id,&#39;add_time&#39;=> $add_time,&#39;jindiao_id&#39;=> $res_add,&#39;file&#39;=>$v);
                        $ziyuan_info = M("fangchan_jdresources")->data($data)->add();
                    }elseif($type_file==&#39;image&#39;)
                    {
                        $data=array(&#39;user_id&#39; => $user_id,&#39;fangchan_id&#39; => $fangchan_id,&#39;cate_id&#39;=> $cate_id,&#39;add_time&#39;=> $add_time,&#39;jindiao_id&#39;=> $res_add,&#39;images&#39;=>$v);
                        $ziyuan_info = M("fangchan_jdresources")->data($data)->add();
                    }

                }
                if($ziyuan_info)
                {
                    $ret =[
                        &#39;status&#39;=>200,
                        &#39;msg&#39;=>&#39;上传成功&#39;,
                        &#39;data&#39;=> $data
                    ];
                }else{
                    $ret =[
                        &#39;status&#39;=>1010,
                        &#39;msg&#39;=>&#39;上传资源失败&#39;,
                        &#39;data&#39;=> &#39;&#39;
                    ];
                }
            }else{
                $ret =[
                    &#39;status&#39;=>1011,
                    &#39;msg&#39;=>&#39;上传资源失败&#39;,
                    &#39;data&#39;=> &#39;&#39;
                ];
            }
        }elseif(empty($res_add) && empty($res_edit)){
            $ret =[
                &#39;status&#39;=>1007,
                &#39;msg&#39;=>&#39;上传失败&#39;,
                &#39;data&#39;=> &#39;&#39;
            ];
        }else{
            $ret =[
                &#39;status&#39;=>200,
                &#39;msg&#39;=>&#39;上传成功&#39;,
                &#39;data&#39;=> &#39;&#39;
            ];
        }
       $this->ajaxReturn($ret);
    }

    /*

    *多图上传

     */
    public function uploadFile($type=&#39;file&#39;){

        if($type==&#39;file&#39;)
        {
            $type_info = array(&#39;doc&#39;, &#39;docx&#39;, &#39;xls&#39;, &#39;xlsx&#39;,&#39;zip&#39;,&#39;rar&#39;);
            $type_path = &#39;/Public/upload/jidiao/files/&#39;;
        }elseif($type==&#39;image&#39;){
            $type_info = array(&#39;jpg&#39;, &#39;gif&#39;, &#39;png&#39;, &#39;jpeg&#39;);
            $type_path = &#39;/Public/upload/jidiao/images/&#39;;
        }
        $upload = new \Think\Upload();// 实例化上传类
        $upload->maxSize   =     1 * 1024 * 1024;// 设置附件上传大小
        $upload->exts      =     $type_info;// 设置附件上传类型
        $upload->rootPath  =      &#39;.&#39;.$type_path; // 设置附件上传根目录
        $upload->savePath  =      &#39;&#39;; // 设置附件上传(子)目录
        $upload->subName   = array(&#39;date&#39;,&#39;Y/m-d&#39;);
        //上传文件
        $info = $upload->upload();
        $picurl = array();
        if(!$info) {// 上传错误提示错误信息
            return array(&#39;status&#39;=>-1,&#39;msg&#39;=>$upload->getError(),&#39;result&#39;=>&#39;&#39;);
        }else{// 上传成功 获取上传文件信息
            foreach($info as $file){
                $picurl[] = $type_path.$file[&#39;savepath&#39;].$file[&#39;savename&#39;];
            }
            return array("status"=>1,"msg"=>&#39;上传成功&#39;,&#39;result&#39;=>$picurl);

        }



    }
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Development of ThinkPHP5 WeChat cash red envelope

About the use of thinkphp behavior

The above is the detailed content of Multi-image ajax upload image under thinkphp. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!