安卓机进入用了live-player的页面频繁黑屏,ios现在变得很卡,微信版本都是7.0.5,用7.0.4就没这些问题
微信 7.0.5 黑屏就去就直接黑屏 小程序内->更多按钮->关于XXX->反馈与投诉->功能异常->提交 通过此途径有看到日志,并没有发现报错信息
2019-08-12同问,这个接口是全局的么?
监听网络变化接口是全局方法吗?监听接口在B页面的onshow里,A页面也可以触发我在B页面关闭网络,触发监听网络接口,然后退出B页面,返回A页面,在A页面打开网络,居然触发了B页面的监听网络接口,然后我把B页面的监听网络接口放到B的onload里,关闭网络,返回A页面,在A页面打开网络,居然也触发了B页面的监听网络变化接口,请问官方,wx.onNetworkStatusChange是全局的方法吗?还是bug?
2019-03-28同问
live-player页面隐藏后仍然继续播放【急】live-player中在onHide中操作直播实例不生效 <view class="page-body"> <view class="page-section tc"> <live-player id="player" src="{{liveSrc}}" mode="live" bindstatechange="statechange" binderror="error" background-mute/> <view class="btn-area"> <button bindtap="bindPlay" class="page-body-button" type="primary">播放</button> <button bindtap="bindPause" class="page-body-button" type="primary">暂停</button> <button bindtap="bindStop" class="page-body-button" type="primary">停止</button> <button bindtap="bindResume" class="page-body-button" type="primary">恢复</button> <button bindtap="bindMute" class="page-body-button" type="primary">静音</button> <button bindtap="setSrc" class="page-body-button" type="primary">src</button> </view> </view> </view> /* eslint-disable */ const app = getApp() Page({ data: { liveSrc: "", state: 0, // 当前视频状态,0暂停,1播放,-1无视频或播放失败,用于控制页面上元素的展示 fullScreen: false, mute: false, init: true // 是否是第一次播放,用于控制只进行一次play() }, onLoad: function () { this.setData({ // liveSrc:"http://tx.corp-flv.huya.com/huyalive/35754395-35754395-153563957213265920-3155517294-10057-A-1523883632-63059.flv?wsSecret=551b73f934a29fcc48ec24010c6a3a81&wsTime=5ad601ce" liveSrc:"rtmp://live.hkstv.hk.lxdns.com/live/hks" }) }, onReady(res) { this.ctx = wx.createLivePlayerContext('player') }, /* 直播相关 start */ // 静音按钮 tapMute() { this.bindMute(); }, // 监听状态改变 statechange(e) { if (e.detail.code == '-2301') { console.log('loading fail'); this.setData({ state: -1 }); } console.log('live-player code:', e.detail.code) }, // 错误处理 error(e) { console.error('live-player error:', e.detail.errMsg); this.setData({ state: -1 }); }, bindPlay() { this.ctx.play({ success: res => { this.setData({ // state:1 - this.data.state // 1 state: 1 }); console.log('play success') }, fail: res => { console.log('play fail'); this.setData({ state: -1 }); } }) }, bindPause() { this.ctx.pause({ success: res => { this.setData({ // state:1 - this.data.state // 0 state: 0 }); console.log('pause success') }, fail: res => { console.log('pause fail') this.setData({ state: -1 }); } }) }, bindStop() { this.ctx.stop({ success: res => { this.setData({ // state:1 - this.data.state // 0 state: 0, init: true }); console.log('stop success') }, fail: res => { console.log('stop fail') this.setData({ state: -1 }); } }) }, bindResume() { this.ctx.resume({ success: res => { this.setData({ // state:1 - this.data.state // 1 state: 1 }); console.log('resume success') }, fail: res => { console.log('resume fail') this.setData({ state: -1 }); } }) }, bindMute() { this.ctx.mute({ success: res => { this.setData({ mute: !this.data.mute }); console.log('mute success') }, fail: res => { console.log('mute fail') this.setData({ state: -1 }); } }) }, bindFullScreen() { this.ctx.exitFullScreen({ success: res => { console.log('exitFullScreen success') }, fail: res => { console.log('exitFullScreen fail') this.setData({ state: -1 }); } }) }, bindExitFullScreen() { this.ctx.requestFullScreen({ direction: 90, success: res => { console.log('requestFullScreen success') }, fail: res => { console.log('requestFullScreen fail') this.setData({ state: -1 }); } }) }, setSrc(){ this.setData({ liveSrc: "" }); console.log(this.data.liveSrc); this.ctx = null; }, onShow(){ console.log("show~~~~~~"); // setTimeout(() => { // this.bindPlay(); // }, 1000); }, onHide(){ console.log("hide~~~~~~"); this.setData({ liveSrc: "" }); this.bindStop(); } /* 直播相关 end */ })
2019-01-31期待解决方案,希望官方支持mode
cover-image设置mode属性无效,怎么样才能保证图片不变形?目前我们有个页面是在地图上显示头像,所以用 了cover-image标签,但是这个标签不支持mode属性。那我就会遇到图片变形的问题。 请问这个问题大家一般是怎么解决的?mode属性什么时候才能用在cover-image标签上?他不支持mode属性,真的很不方便
2019-01-30官方什么时候能支持mode啊
cover-imagecover-image设置mode模式并没有变化 我看文档里面cover-image也没有mode属性的介绍,是不支持吗
2019-01-30cover-image什么时候能支持mode啊
cover-image怎么实现image的不同mode显示cover-image无法实现类似image的显示模式,比如裁剪的center模式,在开发工具里只实现了裁剪的left的模式
2019-01-30