- sentry怎么监控小程序的性能指标?
sentry怎么监控小程序的性能指标? pc端的很简单用官网的就行了,但是官网的不支持小程序,有知道的大佬教一下吗有偿!!!
02-20 - 有没有人uniapp+vue2 小程序接入过sentry监控平台?有经验的私聊一下有偿。
有没有人uniapp+vue2 小程序接入过sentry监控平台,有经验的私聊一下有偿。
02-07 - uniapp开发小程序使用 uni.createInnerAudioContext() 没有效果?
<view class="play" @click="handerPlay"> <image :src="isPlay ? '/static/noplay.png' : '/static/play.png'" mode="aspectFit" ></image> </view> <script> const innerAudioContext = uni.createInnerAudioContext() export default { data() { return { isPlay: false, audioObj: { url:"https://hkx-dev-res.oss-cn-beijing.aliyuncs.com/%E4%BA%92%E5%8A%A8%E5%BC%8F%E7%9B%B4%E6%92%AD3.mp3" }, timer: null, currentTime: "00:00", duration: "00:00" }; }, methods: { handerPlay() { // debugger this.isPlay = !this.isPlay; if (this.isPlay) { this.doPlay() } else { this.doPause() } }, // 播放 doPlay() { if (!innerAudioContext.url) { // 音频地址 innerAudioContext.url = this.audioObj.url; innerAudioContext.play(); } innerAudioContext.play(); }, doPause() { innerAudioContext.pause(); // 清除定时器 clearInterval(this.timer); }, } onLoad() { this.timer = null; innerAudioContext.onCanplay(() => { innerAudioContext.duration // 延迟大约300ms以上才能获取音频总时长 setTimeout(() => { // 获取音频总时长 this.duration = this.formatSeconds(innerAudioContext.duration); }, 300); }); // 监听音频播放 innerAudioContext.onPlay(() => { // 获取当前音频的播放时间 this.timer = setInterval(() => { this.currentTime = this.formatSeconds( innerAudioContext.currentTime ); }, 1000); }); innerAudioContext.onError(err => { console.log(err) }) } </script> 代码差不多是这样, 点击播放,完全没有反应只有按钮图片的切换,再点暂停,会报 The play() request was interrupted by a call to pause()
2023-12-21 - 转发之后有些内容出现乱码
在真机有编译器里显示全部正常,但是转发之后打开有一部分文字会出现乱码[图片] [图片]
2017-10-14 - 小程序版本更新之后,之前版本的缓存还在吗
小程序版本更新之后,之前版本的缓存还在吗,比如我这边版本更新了,用户那边的缓存还在吗
2017-09-02