摘要: 对象数组去重 方法1: // key为对象的某个字段的key removeDuplicationData(arr, key) { const obj = {} arr = arr.reduce((item, next) => { obj[next[key]] ? '' : (obj[next[key 阅读全文
posted @ 2024-10-16 11:04 hong_li 阅读(3) 评论(0) 推荐(0) 编辑
摘要: vue2项目中,在列表等需要循环渲染的地方,使用el-popover时,数据量大了以后,会造成页面卡顿。 解决方案:基于el-popver二次封装 <template> <div class="my-popover-container"> <span ref="referenceRef" class 阅读全文
posted @ 2024-10-16 10:47 hong_li 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 导致问题的原因是pdfjs将上次查看的pdf页码记录到localStorage中,需要注释掉viewer.mjs中的一段代码 localStorage.setItem('pdfjs.history', databaseStr) 阅读全文
posted @ 2024-10-16 10:28 hong_li 阅读(28) 评论(0) 推荐(0) 编辑