- 無法真機調試
[图片]
2019-06-12 - IOS退出小程序後再進入會卡死
1、第一次進入 調用 wx.openBluetoothAdapter 正常 2、用 <navigator class="leave-btn" open-type="exit" target="miniProgram" @tap="alreadyLeave">已離場</navigator> 退出小程序 3、再次打開進入 卡死了, 無法 調用 this.initBluetooth() 裡面的 wx.openBluetoothAdapter onShow() { this.getAppAuth() console.log('start up on show ', moment().format('YYYY-MM-DD HH:mm:ss')) if (this.init === false) { // 預防進入兩次,小程序機制bug this.init = true const value = wx.getStorageSync('WXOpenId') console.log('value ', value) if (value) { globalStore.wxOpenId = value } if (globalStore.wxOpenId === ''){ getToken(this.loginWX(), this.getTokenSuccess, this.getTokenFail); } else{ wx.getSystemInfo({ success: res => { console.log('model:' + res.model) console.log('pixelRatio:' + res.pixelRatio) console.log('windowWidth:' + res.windowWidth) console.log('windowHeight:' + res.windowHeight) console.log('language:' + res.language) console.log('version:' + res.version) console.log('platform:' + res.platform) globalStore.phoneSystem = res.platform globalStore.phoneSystemVersion = res.version if(globalStore.phoneSystem === 'devtools'){ globalStore.devParkType === '1' ? this.isMarkLocation() : wx.redirectTo({ url: 'confirm-info' }) } else{ this.initBluetooth() } }, fail: res => { // curThis.bleError = res.errCode + ' ' + res.errMsg; } }) } } }
2019-06-03 - 关于生成二维码功能的调试问题
在生成二维码后,需要对所生成的二维码进行测试,但问题是,非线上版本又不允许扫我生成的正式二维码。结果就逼得用户上传正式版本然后做测试,而你们审核又太慢。你们能不能开放一个生成体验版二维码的功能以作测试用啊?
2017-11-09 - 新版本图片不显示的问题
[图片] 如图,我目录下明明有图片文件在的,但为什么在wx:for 下面显示不出来,而且还报错了? 版本是:1.01.170907
2017-09-11