上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 29 下一页
摘要: ##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 阅读全文
posted @ 2022-05-26 11:00 huihuihero 阅读(1824) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-05-24 17:29 huihuihero 阅读(817) 评论(0) 推荐(0) 编辑
摘要: ##移动端查看富文本大图:vant示例,先提取图片地址,再通过vant-ui图片预览组件预览。 <div v-html="richtextInfo" @click="judgeImg($event)"></div> import {ImagePreview} from "vant" //引入vant 阅读全文
posted @ 2022-05-07 10:46 huihuihero 阅读(428) 评论(0) 推荐(1) 编辑
摘要: ###此博客写的很详细了:https://www.cnblogs.com/xiaoyan2017/p/11531238.html ###官方配置文档详见:https://uniapp.dcloud.io/collocation/pages?id=app-titlenview-buttons #### 阅读全文
posted @ 2022-03-29 10:34 huihuihero 阅读(4230) 评论(0) 推荐(0) 编辑
摘要: //识别并转换文本里的超链接 transSlink(value){ let reg = /(http:\/\/|https:\/\/|www)((\w|=|\?|\.|\/|&|~|-|[\u200B-\u200D\uFEFF])+)/g; let text = value.replace(reg, 阅读全文
posted @ 2022-02-18 16:59 huihuihero 阅读(168) 评论(0) 推荐(0) 编辑
摘要: ####转换对象数组格式 [{...},{...},{...},{...},{...}] → [{{...},{...}} , {{...},{...}} , {{...}}] 可用于vue多重v-for循环,如图 transObjData(info){ let resArr=[] let sonO 阅读全文
posted @ 2022-01-11 10:41 huihuihero 阅读(227) 评论(0) 推荐(0) 编辑
摘要: ####以时间排序为例 知识点:js原生数组排序 Array.sort(function(){}) 这种方法会改变原数组,无需return //处理函数 handleSort(arr){ arr.sort((a,b)=>{ let t1 = new Date(Date.parse(a.birthda 阅读全文
posted @ 2021-12-22 16:12 huihuihero 阅读(261) 评论(0) 推荐(0) 编辑
摘要: ###原理 1、通过 html2Canvas 将页面绘制成出来 2、通过 jspdf 将绘制出来的页面转为pdf 注意:想要绘制整个页面(包括滚动区域),建议 html2Canvas 的height使用scrollHeight+1000(或+500等,或不填也行) 如果使用clientHeight, 阅读全文
posted @ 2021-12-16 10:08 huihuihero 阅读(427) 评论(0) 推荐(0) 编辑
摘要: ####App环境 if (uni.getSystemInfoSync().platform == 'ios'){ plus.ios.import("UIApplication").sharedApplication().performSelector("exit") } else if (uni. 阅读全文
posted @ 2021-09-08 14:46 huihuihero 阅读(2062) 评论(0) 推荐(0) 编辑
摘要: ###方法 /*** 判断mac系统(含iphone手机) ***/ let isMac = /macintosh|mac os x/i.test(navigator.userAgent); /*** 判断windows系统 ***/ let isWindows = /windows|win32/i 阅读全文
posted @ 2021-08-26 10:23 huihuihero 阅读(385) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 29 下一页