摘要: uni.chooseFile(OBJECT) 平台差异说明 AppH5微信小程序支付宝小程序百度小程序字节跳动小程序、飞书小程序QQ小程序快手小程序京东小程序 x √(HBuilder X2.9.9+) x(可使用wx.chooseMessageFile) x x x x x x App端如需选择非 阅读全文
posted @ 2023-05-08 16:22 Stitchhhhh 阅读(1683) 评论(0) 推荐(0) 编辑
摘要: 1、进入"开发者中心"https://dev.dcloud.net.cn/pages/app/actor,绑定app项目 2、进入"插件市场"登录并购买插件https://ext.dcloud.net.cn/plugin?id=526 账号没绑定项目就会出现这个 3、HBuilderX插件配置——> 阅读全文
posted @ 2023-05-08 14:43 Stitchhhhh 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: uniapp官方文档:https://uniapp.dcloud.net.cn/api/request/websocket.html 网络请求的 超时时间 可以统一在 manifest.json 中配置 networkTimeout。 App平台,2.2.6以下的版本,不支持 ArrayBuffer 阅读全文
posted @ 2023-05-06 08:53 Stitchhhhh 阅读(783) 评论(0) 推荐(0) 编辑
摘要: vscode小tip:生成固定格式代码片段: 第一步,复制自己需要生成代码片段的代码 第二步,https://snippet-generator.app/在该网站中生成代码片段 第三步,在VSCode中配置代码片段 阅读全文
posted @ 2023-02-28 17:21 Stitchhhhh 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 本文方法是html2canvas + jspdf 下载html2canvas、jspdf 创建htmlToPdf.js文件 import html2Canvas from 'html2canvas' import JsPDF from 'jspdf' import { Loading } from 阅读全文
posted @ 2023-02-23 16:14 Stitchhhhh 阅读(537) 评论(0) 推荐(0) 编辑
摘要: npm安装 npm install print-js --save npm安装后将库导入项目或者页面 import print from 'print-js' 参数 默认值 描述 printable null 文档来源:pdf 或图片 url、html 元素 id 或 json 数据对象。 type 阅读全文
posted @ 2023-02-23 15:58 Stitchhhhh 阅读(3258) 评论(3) 推荐(0) 编辑
摘要: 删除旧版本IDEA或者电脑初始化后,新安装的IDEA双击没反应。 1.打开idea安装根目录bin下,选中idea.bat右键编辑,或者使用txt打开 2.在idea.bat最后一行添加 pause 如图 3.保存关闭 , 双击运行idea.bat 4.会显示报错信息,如图下 5.根据错误信息找到配 阅读全文
posted @ 2022-11-29 17:16 Stitchhhhh 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 原因可能是npm的下载地址是国外的,这时候可以将下载地址切换为国内的淘宝镜像,具体设置如下: 查看npm的下载地址:npm config get registry 没有设置的话就是https://registry.npmjs.org/ 执行npm config set registry https: 阅读全文
posted @ 2022-11-16 16:54 Stitchhhhh 阅读(2145) 评论(0) 推荐(0) 编辑
摘要: <el-form ref="submitForm" :rules="rules" :model="submitForm" label-position="right" label-width="120px" > <!--<el-form-item label="客户经理编号" prop="custM 阅读全文
posted @ 2022-11-09 16:52 Stitchhhhh 阅读(184) 评论(0) 推荐(0) 编辑
摘要: const str = "I like you,but you don't know,I'm sad." function strReverse(str) { const strList = str.split(',').reverse() strList.forEach((item, index) 阅读全文
posted @ 2022-09-27 17:11 Stitchhhhh 阅读(14) 评论(0) 推荐(0) 编辑