关于layui文件二次上传无效的解决方案

<div class="layui-upload" style="margin: 15px">
            <button type="button" class="layui-btn layui-btn-normal" id="testList">选择多文件</button>
            <div class="layui-upload-list" style="max-width: 1000px;">
                <table class="layui-table">
                    <colgroup>
                        <col>
                        <col width="15%">
                        <col width="20%">
                        <col width="15%">
                    </colgroup>
                    <thead>
                    <tr>
                        <th>文件名</th>
                        <th>大小</th>
                        <th>上传进度</th>
                        <th>操作</th>
                    </tr>
                    </thead>
                    <tbody id="demoList"></tbody>
                </table>
            </div>
            <button type="button" class="layui-btn" id="testListAction">开始上传</button>
        </div>

上传文件前添加loading

,before: function () {
                    layer.load();
                }

上传完成后关闭loading ,并给上传按钮添加禁用属性防止 点击一直卡在loading处

, allDone: function (obj) { //多文件上传完毕后的状态回调
                    console.log(obj)
                    layer.closeAll('loading');
                    /*在上传文件成功后添加禁用属性,防止出错*/
                    $("#testListAction").attr("disabled",true);
                }

再在添加上传文件后that.elemList.append(tr); 移除上传按钮禁用属性   

that.elemList.append(tr);
/*在添加文件后移除禁用属性*/
$('#testListAction').removeAttr("disabled");

    这样就可以再次添加文件 并且上传了 同时避免了点击上传卡顿

以下是全部js

var uploadListIns = upload.render({
                elem: '#testList'
                , elemList: $('#demoList') //列表元素对象
                , url: '/images/addImages/' + [[${cat}]] //此处用的是第三方的 http 请求演示,实际使用时改成您自己的上传接口即可。
                , accept: 'file'
                , multiple: true
                , number: 50
                , auto: false
                , bindAction: '#testListAction'
                ,before: function () {
                    layer.load();
                }
                , choose: function (obj) {
                    var that = this;
                    var files = this.files = obj.pushFile(); //将每次选择的文件追加到文件队列
                    //读取本地文件
                    obj.preview(function (index, file, result) {
                        var tr = $(['<tr id="upload-' + index + '">'
                            , '<td>' + file.name + '</td>'
                            , '<td>' + (file.size / 1024).toFixed(1) + 'kb</td>'
                            , '<td><div class="layui-progress" lay-filter="progress-demo-' + index + '"><div class="layui-progress-bar" lay-percent=""></div></div></td>'
                            , '<td>'
                            , '<button class="layui-btn layui-btn-xs demo-reload layui-hide">重传</button>'
                            , '<button class="layui-btn layui-btn-xs layui-btn-danger demo-delete">删除</button>'
                            , '</td>'
                            , '</tr>'].join(''));

                        //单个重传
                        tr.find('.demo-reload').on('click', function () {
                            obj.upload(index, file);
                        });

                        //删除
                        tr.find('.demo-delete').on('click', function () {
                            delete files[index]; //删除对应的文件
                            tr.remove();
                            uploadListIns.config.elem.next()[0].value = ''; //清空 input file 值,以免删除后出现同名文件不可选

                        });

                        that.elemList.append(tr);
                        /*在添加文件后移除禁用属性*/
                        $('#testListAction').removeAttr("disabled");
                        element.render('progress'); //渲染新加的进度条组件
                    });
                }
                , done: function (res, index, upload) { //成功的回调
                    var that = this;
                    if (res.code === 0) { //上传成功
                        var tr = that.elemList.find('tr#upload-' + index)
                            , tds = tr.children();
                        tds.eq(3).html(''); //清空操作
                        delete this.files[index]; //删除文件队列已经上传成功的文件
                        /*layer.msg("上传成功", {icon: 6});*/
                        return;
                    }
                    this.error(index, upload);
                }
                , allDone: function (obj) { //多文件上传完毕后的状态回调
                    console.log(obj)
                    /*上传成功后关闭loading*/
                    layer.closeAll('loading');
                    /*在上传文件成功后添加禁用属性,防止loading卡顿*/
                    $("#testListAction").attr("disabled",true);
                }
                , error: function (index, upload) { //错误回调
                    var that = this;
                    var tr = that.elemList.find('tr#upload-' + index)
                        , tds = tr.children();
                    tds.eq(3).find('.demo-reload').removeClass('layui-hide'); //显示重传
                    layer.closeAll('loading');
                }
                , progress: function (n, elem, e, index) { //注意:index 参数为 layui 2.6.6 新增
                    element.progress('progress-demo-' + index, n + '%'); //执行进度条。n 即为返回的进度百分比
                }
            });

目前还存在一个问题就是关闭iframe窗口 再次打开后还是依然无法上传  必须要关闭 tab页才可以

谁能处理这个问题 麻烦分享以下 不足之处,请指教 谢谢!

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值