IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> layui+springboot 上传数据进行处理的一些问题 -> 正文阅读

[JavaScript知识库]layui+springboot 上传数据进行处理的一些问题

layui+springboot 上传数据进行处理的一些问题

问题1:统计文件列表的文件数量

files中只有pushFile()等四个方法,我们需要知道一个Object对象中的对象个数,我们可以ObjectObject.keys(obj)方法


choose: function choose(obj) {
			files = this.file = obj.pushFile();
			obj.preview(function (index, file, result) {
				imgCount = Object.keys(files).length;
			});
		}  

问题2:需要得到我们最新添加的文件,这里我只需要文件列表里是我最新添加的这个文件,我只需要这一个文件,我们使用for循环删除所有的文件,在将最新的文件加进去


	choose: function(obj){
                var files = this.files;
                for (let x in files) {  //先来个for循环清空队列
                    delete files[x];
                }
                var that = this;

                files = this.files = obj.pushFile(); //将选择的文件添加

问题3:layui当文件列表比限制的文件数多一个时才会提示文件数量限制,当我们将文件数量设置为1时,我们现在需要table只显示我们最新选择的文件,但是我们发现table最多可以出现2个记录,我们可以在添加前,进行表单清空,

  • 这是我们将文件数量限制为1,我们发现,第一次选择文件会出现文件.xlsx,第二次点击选择选择文件会添加红色方框的这条记录,但是上传时就会提醒我们只能上传一条,所以这时我们不需要第一条记录

在这里插入图片描述

//表单清空
var tr = that.elemList.find('tr');
tr.remove();
//读取本地文件
obj.preview(function(index, file, result){......}

问题4:我们发现进度已经达到了100%,但是进度条没有显示,我们查看参数

我们发现index未定义,说明没有传值进来,这时我们对参数进行处理,这里我们因为只有一条数据,所以将表单的第一条记录id命名为progress-demo
在这里插入图片描述
=

问题5: 这时前端处理好了,我们将数据传入到后台

我们填写url

var uploadListIns = upload.render({
          elem: '#test-upload-testList'
          ,elemList: $('#test-upload-demoList') //列表元素对象
          ,url: 'http://localhost:8080/file/importExcel'
          ,accept: 'file'
          ,exts: 'xls|xlsx'
          ,multiple: false
          ,number: 1
          ,auto: false
          ,bindAction: '#test-upload-testListAction'
          ,choose: function(obj){

问题6:后台如何处理

1.这里注意返回的json格式,我们看一下layui的要求在这里插入图片描述
2.对于文件我们如何处理,我们使用transfer方法,将file文件复制到path的路径中,然后进行处理
file.transferTo(new File(path))

package com.knowledge.management.device.controller;

import com.knowledge.management.device.utils.Neo4jUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

@RestController
@RequestMapping(value = "/file",produces = "application/json;charset=utf-8")
public class FileController {

    @Autowired
    Neo4jUtil neo4jUtil;

    @RequestMapping("/importExcel")
    public Map<String,Object> importExcel(@RequestParam("file") MultipartFile file, HttpServletRequest request) throws IOException {
        Map<String,Object> map =new HashMap<>();
        System.out.println("进入文件");
        if (file.isEmpty()) {
            map.put("code","0");
            map.put("messag","文件为空");
            return map;
        }
		//配置路径,我这里在ymal中配置了临时文件夹路径,所以直接读取
        String path = neo4jUtil.readYaml("FileDiy","savePath")+System.currentTimeMillis()+file.getOriginalFilename();
        System.out.println(path);
        file.transferTo(new File(path));
        //这里是我利用保存的文件进行图数据库的导入,进行业务操作
        neo4jUtil.importData(path);

        System.out.println(file.getName());
        map.put("code",1);
        return map;
    }
}

贴上前端代码



<title>功能演示二 - 上传组件</title>

<div class="layui-card layadmin-header">
    <div class="layui-breadcrumb" lay-filter="breadcrumb">
        <a lay-href="">主页</a>
        <a><cite>数据管理</cite></a>
        <a><cite>数据导入</cite></a>
    </div>
</div>

<div class="layui-fluid">
    <div class="layui-row layui-col-space15">

        <div class="layui-col-md12">
            <div class="layui-card">
                <div class="layui-card-header">文件上传</div>
                <div class="layui-card-body">
                    <div class="layui-upload">
                        <button type="button" class="layui-btn layui-btn-normal" id="test-upload-testList">选择文件</button>
                        <button type="button" class="layui-btn" id="test-upload-testListAction">开始导入</button>
                        <div class="layui-upload-list">
                            <table class="layui-table">
                                <colgroup>
                                    <col>
                                    <col width="150">
                                    <col width="260">
                                    <col width="150">
                                </colgroup>
                                <thead>
                                <tr>
                                    <th>文件名</th>
                                    <th>大小</th>
                                    <th>上传进度</th>
                                    <th>操作</th>
                                </tr>
                                </thead>
                                <tbody id="test-upload-demoList"></tbody>
                            </table>
                        </div>

                    </div>
                </div>
            </div>
        </div>

    </div>
</div>

<script>
    layui.use(['admin', 'upload', 'element'], function(){
        var $ = layui.jquery
            ,upload = layui.upload
            ,element = layui.element;

        //多文件列表示例
        var uploadListIns = upload.render({
            elem: '#test-upload-testList'
            ,elemList: $('#test-upload-demoList') //列表元素对象
            ,url: 'http://localhost:8080/file/importExcel'
            ,accept: 'file'
            ,exts: 'xls|xlsx'
            ,multiple: false
            ,number: 1
            ,auto: false
            ,bindAction: '#test-upload-testListAction'
            ,choose: function(obj){
                var files = this.files;
                for (let x in files) {  //先来个for循环清空队列
                    delete files[x];
                }
                var that = this;

                files = this.files = obj.pushFile(); //将选择的文件添加
                console.log(files);
                //清空table
                var tr = that.elemList.find('tr');
                tr.remove();
                //读取本地文件
                obj.preview(function(index, file, result){
                    var tr = $(['<tr id="upload-'+ index +'">'
                        ,'<td>'+ file.name +'</td>'
                        ,'<td>'+ (file.size/1014).toFixed(1) +'kb</td>'
                        ,'<td><div class="layui-progress" lay-filter="progress-demo"><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);
                    element.render('progress'); //渲染新加的进度条组件
                });
            }
            ,done: function(res){ //成功的回调
                console.log("res");
                if(res.code==1){
                    console.log("chenggong");
                    var that = this;
                    console.log("log");
                    console.log(that);
                    var tr = that.elemList.find('tr');
                    tr.remove();
                    uploadListIns.config.elem.next()[0].value = '';
                }
                /*console.log("返回");
                var that = this;
                //if(res.code == 0){ //上传成功
                var tr = that.elemList.find('tr#upload-'+ index)
                    ,tds = tr.children();
                tds.eq(3).append('<button>导入</button>'); //清空操作
                delete this.files[index]; //删除文件队列已经上传成功的文件
                return;
                //}
                this.error(index, upload);*/
            }
            ,allDone: function(obj){ //多文件上传完毕后的状态回调
                console.log(obj)
            }
            ,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'); //显示重传
            }
            ,progress: function(n, elem, e, index){
                element.progress('progress-demo', n + '%'); //执行进度条。n 即为返回的进度百分比
            }
        });
    });
</script>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 12:02:05  更:2022-04-04 12:04:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:59:33-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码