摘要:
文档地址:https://github.com/xyxiao001/vue-cropper 安装: npm install vue-cropper 子组件 <template> <el-dialog title="裁剪头像" :visible.sync="dialogVisible" :show-c 阅读全文
摘要:
1、效果 2、数据 [ { "date":"2016-05-02", "name":"王小虎", "address":"上海市普陀区金沙江路 1518 弄" }, { "date":"2016-05-04", "name":"王小虎", "address":"上海市普陀区金沙江路 1517 弄" } 阅读全文
摘要:
https://blog.csdn.net/weixin_44205779/article/details/128215134 阅读全文
摘要:
https://github.com/pikaz-18/pikaz-excel-js/#table-setting 阅读全文
摘要:
download(data, name, type) { const b = new Blob([data]) // 拿到文件流下载对象, 有的定义不需要.data,根据后端返回字段定 const url = window.URL.createObjectURL(b) // 生成文件流下载链接 co 阅读全文
摘要:
base64转blob: //dataurl:base64的url fileType:要转的文件类型 urlToBlob (dataurl, fileType) { dataurl = dataurl.replace('-', '+').replace('_', '/').split(';base6 阅读全文
摘要:
index=(y*width+x)*4 阅读全文
摘要:
我们主要用它来实现数组的 删除、添加、替换功能 首先我我们看一下他的参数(一共有三个) splice(start,num,item),三个参数都是我自己起的名字,不要做呆瓜,按实际来- - 第一个参数:start:代表起始位置(从0开始,如果只有他一个参数,就是删除它从这个参数开始(包含它本身)之后 阅读全文
摘要:
https://blog.csdn.net/tt18473481961/article/details/82887093 阅读全文
摘要:
reduce的定义:reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值。说白了就是累加器。 我们看一下之前的累加: 看例子: 最后输出结果为:36 下面介绍reduce:(它的基本语法): 输出结果为: 他的第一次的两个参数,打印出了数组的前两项, 从 阅读全文