- 如何字符串转方法?
eval()似乎无法使用
2022-06-10 - 如何清理对小程序授权? 特别是登录头像授权信息,我想测试一下wx.getUseInfo
特别是登录头像授权信息,我想测试一下wx.getUserInfo
2022-05-17 - 关于小程序动画运行失败?
var animation = wx.createAnimation(); //animation.opacity(0).step({ // duration: 1, //timingFunction: 'ease', // delay: 0 // }) //只写这个没问题,但如果我加上上面这段,那么该animation指向的动画对象将不会显现,为什么? animation.translateY(-100).opacity(1).step({ duration: 1500, timingFunction: 'ease', delay: 2,//延迟执行的时间 })
2022-05-11 - 推送调试基础库对线上有影响吗?
推送调试基础库对线上有影响吗?
2022-04-29 - wx.getUserProfile出错?
wx.getUserProfile is not a function; [Component] Event Handler Error @ pages/login/login 这是已经发布的小程序返回的错误信息,几百人在用而且几乎每个人都会经过这个步骤,但是只有一个人出错了多次 目前小程序调试基础库在2.23.0以上(而且我记得调试基础库是不影响正式的?) 自己测试的时候无法触发该出错
2022-04-29 - 如何在开发者工具查看当前小程序运行后所占用内存?
如题?
2022-03-25 - 使用client.disconnect()主动断连mqtt为什么需要等好长一段时间(5s)?
库paho-mqtt-min.js onUnload(){ var client = this.data.client return client.disconnect() }
2022-03-22 - 微信小程序 mqtt我想在APP.JS连接服务器,在子页面选择topic,如何拆分?
APP.js无法调用子页面的方法, 库paho-mqtt-min.js doConnect: function () { var that = this; if (that.data.client && that.data.client.isConnected()) { wx.showToast({ title: '不要重复连接' }) return } var client = new Client('wss://ixxxxxxm/mqtt', that.randomString()); client.connect({ useSSL: true, cleanSession: true, keepAliveInterval: 5, onSuccess: function () { that.data.client = client that.onConnectSuccess(client)//在子页面 //收到信息并处理//在子页面 client.onMessageArrived = function (msg) { that.onMessageArrived(msg)} //异常//在子页面 client.onConnectionLost = function (responseObject) { that.onConnectionLost(responseObject) } }, onFailure(res){ wx.showModal({ title:'连接失败', content:'code:'+res.errorCode+',message:' +res.errorMessage, confirmText:'重连', success(res){ if(res.confirm) that.doConnect() } }) } }); },
2022-03-22 - 想在另一个js里面引用当前的js方法(动态页面),怎么做?
我尝试过 const{ onMessageArrived, onConnectSuccess, onConnectionLost }= function(){ console.log(getCurrentPages()) let pages = getCurrentPages() return require(pages[pages.length - 1].route) } 似乎不太行
2022-03-22 - 小程序手机端连接MQTT失败,但PC端可以?(不限于真机调试)
库是使用paho-mqtt-min.js(不校验合法域名的情况下) 电脑可以连接不报错,但手机端会弹出如下错误 errorCode: 7 errorMessage: "AMQJS0007E Socket error:undefined." invocationContext: "<Undefined>" [图片] [图片]
2022-03-21