微信小程序
文章平均质量分 72
【03】
前端、游戏、区块链
展开
-
微信小程序后台报错源码sourcemap定位
发现错误错误内容undefined is not an object (evaluating \'i.length\')https://usr//sub-packages/reimburse/app-service.js:4524:2767https://lib/WASubContext.js:2:66482https://lib/WASubContext.js:2:66590e@https://lib/WASubContext.js:2:69042https://lib/WASubCont原创 2021-02-06 15:39:35 · 3405 阅读 · 1 评论 -
小程序实现富文本图片点击预览
前言微信小程序的rich-text组件是不能获取里面节点标签的,也不能添加事件实现1.引入Parser富文本组件组件下载地址:parser.min.zip、组件官方文档地址:parser官方文档2.将组件放入项目指定目录内、并在app.json注册组件"usingComponents": { "parser": "/utils/parser.min/parser" }3.在wxml中使用<!--<rich-text nodes="{{rithText}}">原创 2020-07-17 10:21:16 · 3902 阅读 · 1 评论 -
小程序自定义导航栏,计算胶囊位置
效果图wxml<view class="nav-bar" style="height:{{capsuleButton.bottom+5}}px"> <view class="nav-bar-box"></view> <view style="width:{{capsuleButton.width+(phoneInfo.screenWidth - capsuleButton.right)+5}}px;background:#ccc;"></v原创 2020-07-17 09:44:22 · 624 阅读 · 0 评论 -
关于小程序时间转换的问题
小程序时间转换,new Date(“2020-01-15”).getTime() 安卓正常,ios中不能解析 - 因此程序会直接报错,严重可能导致一个页面都不能显示,解决方法 用/代替- 如2020-01-15转换成2020/01/15 再 new Date(“2020/01/15”).getTime() 即可分享2个时间转换的函数1. 时间戳转换时间 /** * 时间转换 * @param timestamp * @param type * @returns {YY原创 2020-07-17 09:28:03 · 273 阅读 · 0 评论 -
常用工具函数(小程序篇)
小程序检测更新// app.jsApp({ onLaunch: function () { this.appUpDate() }, appUpDate () { let self = this const updateManager = wx.getUpdateManager() //1. 检查小程序是否有新版本发布 updateManager.onCheckForUpdate(function(res) { // 请求完新版本信息的回调原创 2020-07-17 09:24:43 · 400 阅读 · 0 评论