- live-pusher 组件报错-1307的问题还没有修复吗?
live-pusher 组件报错-1307问题 无法使用该组件 从这礼拜就开始出问题了 现在还没好吗?
2023-05-13 - live-pusher 组件报错-1307问题?
live-pusher 组件报错-1307问题 同事所有手机试了都不行 我们的网络 视频流没有问题 昨天还好好的 今天就开始报错了 无法使用
2023-05-10 - live-player组件需要申请的类目是啥啊? 文档上好像不是最新的
live-player组件需要申请的类目是啥啊? 文档上好像不是最新的 有的说的申请的时候都没有
2023-04-07 - 小程序使用live-push组件有画面安卓有声音,在iphone部分机型上面没有声音的问题?
live-push live-player 同事的部分手机机型没有声音
2022-04-15 - connectSocket建立链接成功后立即就被关闭的问题?
that.localSocket = wx.connectSocket({ url: "wss://test.xxxxxx.com/web/xxxxx/", success: data => { onsole.log('socket 连接成功', data); //this.initSocketListener(); }, fail: data => { console.error('socket 连接失败', data); }, }) that.localSocket.onOpen(function (res) { console.log('WebSocket连接已打开!readyState=' + that.localSocket.readyState); console.log(res, '打开的res数据'); }) that.localSocket.onMessage(function(res) { console.log('接收socket消息') console.log(res) }) that.localSocket.onError(function(res) { console.log('socket报错信息', res) console.log('readyState=' + that.localSocket.readyState) }) that.localSocket.onClose(function (res) { console.log('WebSocket连接已关闭!readyState=' + that.localSocket.readyState) console.log(res, '关闭的res数据') }) [图片] 链接被打开后就自己立即再关闭了,请问下这是什么问题?
2022-03-14 - 为什么小程序更新提示只有ios用户有,安卓用户看不到更新提示?
之前安卓还有过更新提示,最近几个版本突然没有了,只有ios有,代码是没有变更过的。想问问官方这边是否有什么调整吗? 代码如下: if (wx.canIUse('getUpdateManager')) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { console.log(res, '是否需要更新') // 请求完新版本信息的回调 if (res.hasUpdate) { updateManager.onUpdateReady(function () { console.log('更新提示') wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: function (res) { console.log('success====', res) // res: {errMsg: "showModal: ok", cancel: false, confirm: true} if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate(); uni.clearStorageSync(); uni.setStorageSync('startTime',new Date().getTime()) } } }) }) updateManager.onUpdateFailed(function () { // 新的版本下载失败 wx.showModal({ title: '已经有新版本了哟~', content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开小程序~' }) }) } }) } 目前公司里的同事所有安卓用户都不行,应该不是机型的问题了吧,ios的都可以看到。
2021-09-26 - live-player 同层渲染的问题?
为什么模拟器上点击效果正常,但是真机调试时点击事件没有反应? 我看层级的话,view已经覆盖在live-player上面了
2021-07-07