摘要:
##vue版本的相关操作 ####全局卸载vue npm uninstall vue -g ####全局安装最新vue版本(当前为3.0+) npm install vue@next -g ####全局安装vue2.6.14版本(当前2.0中的最新版本) npm install vue@2.6.14 阅读全文
摘要:
Workaround to fix heap out of memory when running node binaries. It's a common issue when using TypeScript 2.1+ and webpack. This tool will append --m 阅读全文
摘要:
##移动端查看富文本大图:vant示例,先提取图片地址,再通过vant-ui图片预览组件预览。 <div v-html="richtextInfo" @click="judgeImg($event)"></div> import {ImagePreview} from "vant" //引入vant 阅读全文
摘要:
###此博客写的很详细了:https://www.cnblogs.com/xiaoyan2017/p/11531238.html ###官方配置文档详见:https://uniapp.dcloud.io/collocation/pages?id=app-titlenview-buttons #### 阅读全文
摘要:
//识别并转换文本里的超链接 transSlink(value){ let reg = /(http:\/\/|https:\/\/|www)((\w|=|\?|\.|\/|&|~|-|[\u200B-\u200D\uFEFF])+)/g; let text = value.replace(reg, 阅读全文
摘要:
####转换对象数组格式 [{...},{...},{...},{...},{...}] → [{{...},{...}} , {{...},{...}} , {{...}}] 可用于vue多重v-for循环,如图 transObjData(info){ let resArr=[] let sonO 阅读全文
摘要:
####以时间排序为例 知识点:js原生数组排序 Array.sort(function(){}) 这种方法会改变原数组,无需return //处理函数 handleSort(arr){ arr.sort((a,b)=>{ let t1 = new Date(Date.parse(a.birthda 阅读全文
摘要:
###原理 1、通过 html2Canvas 将页面绘制成出来 2、通过 jspdf 将绘制出来的页面转为pdf 注意:想要绘制整个页面(包括滚动区域),建议 html2Canvas 的height使用scrollHeight+1000(或+500等,或不填也行) 如果使用clientHeight, 阅读全文
摘要:
####App环境 if (uni.getSystemInfoSync().platform == 'ios'){ plus.ios.import("UIApplication").sharedApplication().performSelector("exit") } else if (uni. 阅读全文
摘要:
###方法 /*** 判断mac系统(含iphone手机) ***/ let isMac = /macintosh|mac os x/i.test(navigator.userAgent); /*** 判断windows系统 ***/ let isWindows = /windows|win32/i 阅读全文