- 罗盘示例代码,能否改成这样?
https://developers.weixin.qq.com/miniprogram/dev/api/device/compass/wx.startCompass.html > 示例代码 // 罗盘放在一个函数里执行,这里的函数名compass是用户自定义的,不必跟这一样,比如在onShow 函数里用 that.compass();调用 // that 需要 先在onShow 函数第一行里写 let that=this; ,关于这个 that = this不熟悉的可以去搜索引擎搜一下了解一下 compass: function () { // 开始监听罗盘 wx.startCompass({ // 开启罗盘监听成功 success() { // 监听罗盘数据变化事件 wx.onCompassChange(res => { // 对监听结果进行处理 console.log(res); )}; }, fail(){ console.log('开启罗盘监听失败'); }, complete(){ console.log('开启罗盘监听完成') } )}; },
2020-12-24 - 这里的回调代码怎么写?
https://developers.weixin.qq.com/miniprogram/dev/api/device/compass/wx.offCompassChange.html // 停止监听罗盘数据变化事件 wx.offCompassChange(res =>{ console.log('监听罗盘数据变化事件停止:',res) }) 我写的是不是不对,执行不报错,但是也不会输出调试信息
2020-12-24 - 开放社区,有的页面 lang='en',打开就弹出翻译弹窗很烦,改一下?
如题!
2020-12-18 - 微信公众平台的扫码登录这么好用,为何微信开放平台还不使用?
微信开放平台不知道吗?
2020-11-30 - 小程序端如何读取手机存储里的文件?
类似下面小程序,本地文件的效果(我目前小程序只发现可以读取小程序自己存下来的文件) [图片]
2020-11-27 - wx.openDocument 打开png图片分享是灰色的
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html 可以打开图片,但是跟doc等格式的显示方式不一样,doc好像是用QQ浏览器显示的,PNG图片不是,好像是用相册打开的,目前遇到的问题是,打开图片时分享功能是灰色的,也没有比较明显的保存按钮,要点编辑进去才能保存,要不要统一都用QQ浏览器打开,交互一样,方便用户使用 [图片]
2020-08-09 - saveFile 参数 filePath 没有强调,需要加/文件名及后缀
https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.saveFile.html const fs = wx.getFileSystemManager() const rootPath = wx.env.USER_DATA_PATH; const localPath = rootPath +'/myFile' fs.saveFile({ tempFilePath: res.tempFilePath, filePath: localPath + '/'+'123.txt',//要加文件名,文档没有说明 success: res => { console.log('临时文件保存成功', res) }, fail: err => { console.log('临时文件保存失败', err) } }); 我是下载后转存,原地址直接使用,tempFilePath: res.tempFilePath, 新地址:filePath: localPath + '/'+'123.txt', 新地址只是目录地址,需要加文件名,知道后能想明白,只是文档没提醒,会没反应过来,存入只指定目录是不行的,需要文件名才行
2020-08-09 - 文档上链接失效
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/storage/downloadFile/client.downloadFile.html 页面滚动到中间一点,fail 返回参数下面的 错误码,有链接,但是失效
2020-08-09 - 报告一个bug
https://developers.weixin.qq.com/minigame/dev/api/network/upload/UploadTask.onProgressUpdate.html //已发送字节数 let showLoadingContent = "" if ((res.totalBytesExpectedToSend / 1024) < 1024) { showLoadingContent = (res.totalBytesSent / 1024).toFixed(0) + 'KB/' + (res.totalBytesExpectedToSend / 1024).toFixed(0) + "KB" } else if ((res.totalBytesExpectedToSend / 1024 / 1024) < 1024) { showLoadingContent = (res.totalBytesSent / 1024 / 1024).toFixed(0) + 'MB/' + (res.totalBytesExpectedToSend / 1024 / 1024).toFixed(0) + "MB" } else { showLoadingContent = (res.totalBytesSent / 1024 / 1024 / 1024).toFixed(0) + 'GB/' + (res.totalBytesExpectedToSend / 1024 / 1024 / 1024).toFixed(0) + "GB" } wx.showLoading({ title: showLoadingContent, }) 上面代码假如我上传10MB的文件,最后这个wx.showLoading,本来应该是 2MB/10MB,2MB这里根据上传不断变化,在微信开发者工具正常,发布后,左侧就不是根据上传变化,而是10MB/10MB这样子 微信开发者工具版本:1.03.2006090 bug微信版本:安卓7.0.17
2020-08-07 - 实时数据推送代码放哪里是最好的?
我现在知道的是:onload,onshow,onReady 1.总是能检测到更新 2.对系统运行最友好
2020-08-03