摘要: cache.js /** * 存储数据 * key: 缓存的键名,必填 * value: 缓存的值,选填 * * when: 缓存的过期时间,选填: * 【1】传入具体秒数时(单位必须为秒),到期后清除; * 【2】传入单词 forever时,永不清除; * 【3】传入单词 once时,获取一次后清 阅读全文
posted @ 2024-01-25 16:33 huihuihero 阅读(83) 评论(0) 推荐(0) 编辑
摘要: request.js import { rootUrl } from "@/config/app-config.js" import handleCache from '@/utils/cache/cache.js'; import { showToast } from "@/utils/vant" 阅读全文
posted @ 2024-01-25 16:29 huihuihero 阅读(422) 评论(0) 推荐(0) 编辑
摘要: bug描述:hbuildx 3.99版本,ios系统:video高度设置若使用rpx,或者使用浮点px如 200.5 px,则会有控制层不弹出的bug。 解决思路:根据屏幕宽度,以及视频宽高比例,计算出video高度的整数px。见下图 阅读全文
posted @ 2024-01-25 16:26 huihuihero 阅读(74) 评论(0) 推荐(0) 编辑