收藏
回答

通通锁锁语音提示开锁成功,但是回调返回结果是断开链接,开锁没几秒就关锁了

问题类型 插件 AppID 插件版本号 AppID 微信版本 基础库版本
Bug wx43d5971c94455481 2.8.4 wxb1db3912b8fd9aeb 8.0.43 2.32.2
openDoorAndStartTime(data) {
				var _this = this;
				
				plugin.controlLock(plugin.ControlAction.OPEN, data.lockData, ret => {
					console.log(ret, 'ret')
					if (ret.errorCode === 10003) {
						uni.hideLoading();
						_this.$global.msg(ret.errorMsg);
						console.log("获取版本信息时设备连接已断开", ret)
					}
				}, null, data.deviceId).then(resa => {
					console.log(resa, 'resa')
					if (!!resa.deviceId) deviceId = resa.deviceId;
					uni.hideLoading()
					if (resa.errorCode === 0) {
						_this.$global.msg("开门成功!");
					} else {
						console.log(resa, 'error');
						_this.$global.msg("开锁失败!" + resa.errorMsg);
					}
				}).catch(e=>{
					uni.hideLoading()
					_this.$global.msg(JSON.stringify(e))
					console.log(e, 'error')
				})
			},
回答关注问题邀请回答
收藏
登录 后发表内容