08 2023 档案

摘要:1.版本 "dom-to-image": "^2.6.0", // or "html2canvas": "^1.4.1", 2.引入 import domtoimage from 'dom-to-image'; // or import html2canvas from 'html2canvas'; 阅读全文
posted @ 2023-08-30 09:46 Deer_Lin 阅读(1215) 评论(0) 推荐(0)
摘要:/** base64转换成blob数据 */ base64ToBlob(dataUrl, type) { var arr = dataUrl.split(','); var mime = arr[0].match(/:(.*?);/)[1] || type; // 去掉url的头,并转化为byte 阅读全文
posted @ 2023-08-30 09:37 Deer_Lin 阅读(343) 评论(0) 推荐(0)
摘要:package.json文件中 dependencies配置 "ol": "git+http://******.git" 阅读全文
posted @ 2023-08-15 16:36 Deer_Lin 阅读(297) 评论(0) 推荐(0)
摘要:在css里添加lines:1 如果不行,增加宽度100%或者固定宽度 实在不行,试试一下代码 width: 370rpx; lines: 1; text-overflow: ellipsis; 阅读全文
posted @ 2023-08-02 16:27 Deer_Lin 阅读(836) 评论(0) 推荐(0)