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