上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 58 下一页
摘要: layui之upload上传excel表格 layui.use(['form', 'layer','element','upload'], function () { var $ = layui.jquery; var layer = layui.layer; var form = layui.fo 阅读全文
posted @ 2021-10-25 14:45 前端白雪 阅读(1477) 评论(0) 推荐(0) 编辑
摘要: JS 文件流方式下载Excel 问题 ajax请求中需要添加responseType 类型为blob例如: xhr.responseType = 'blob' 1、未指定responseType 未指定 2、指定responseType 指定 Vue中如下 export const getExcel 阅读全文
posted @ 2021-10-25 12:00 前端白雪 阅读(2061) 评论(0) 推荐(0) 编辑
摘要: base64转文件(blob)遇到的一个问题 failed to execute 'atob' on 'window': the string to be decoded is not correctly encoded. 在Google后,仍然不能解决,~~o(>_<)o ~~ 后来在看atob和 阅读全文
posted @ 2021-10-25 11:40 前端白雪 阅读(1951) 评论(0) 推荐(0) 编辑
摘要: 使用FileSaver.js把base64数据转成表格并下载 最近公司项目有一个需求, 是按行业要求的一个“怪异”格式表格下载下来,后端通过表格设计器搞了一个模板,然后填充数据, 前端通过接口获取到返回的base64格式的数据,转成表格提供下载,就用到了这个FileSaver.js 引入 FileS 阅读全文
posted @ 2021-10-25 11:14 前端白雪 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 将时间戳转化为日期格式 1. 将时间戳转换成日期格式: function timestampToTime(timestamp) { var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 Y = date.getF 阅读全文
posted @ 2021-10-25 11:02 前端白雪 阅读(8782) 评论(0) 推荐(0) 编辑
摘要: 循环往数组中添加对象 循环往数组中插入对象时要确保每次都创建一个新的对象,不能重复使用之前的对象 //错误的方法 var arr = []; var obj = {}; for (var i = 0; i < 10; i++) { obj.id = i; arr.push(obj); } //正确的 阅读全文
posted @ 2021-10-25 10:10 前端白雪 阅读(658) 评论(0) 推荐(1) 编辑
摘要: underscore常用api 分类专栏: underscore <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>underscore测试案例</title> </head> <body style="hei 阅读全文
posted @ 2021-10-22 14:32 前端白雪 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 浅析JS中document.cookie的用法 cookie是保存在客户端的很小的文件,一般只有几KB左右,且安全性极高,也具有缓解服务器压力的特性; //document.cookie的完整形式: //document.cookie='user=值;[expires=失效时间;path=设置地址; 阅读全文
posted @ 2021-10-22 14:28 前端白雪 阅读(1440) 评论(0) 推荐(0) 编辑
摘要: 详见:http://www.shagua.wiki/project/3 layui图标:http://www.shagua.wiki/project/3?p=85 JQ手册 :https://www.jc2182.com/jquery/jquery-jiaocheng.html css样式手册:ht 阅读全文
posted @ 2021-10-22 10:51 前端白雪 阅读(155) 评论(0) 推荐(0) 编辑
摘要: wx-oauth.js 实现微信网页授权 2019.12.29 15:14:49 一款基于 js-cookie、axios 等,通过微信网页授权,以获取 openid unionid 等用户信息的 js 插件 配置 属性 说明 类型 必填 默认值 appId 公众号的唯一标识 String 是 - 阅读全文
posted @ 2021-10-22 10:42 前端白雪 阅读(840) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 58 下一页