用这个方法可以实现:https://developers.weixin.qq.com/community/develop/article/doc/000c68ae654f7857ce0c6f61f59c13
wx.openDocument 能否支持打开文档的标题栏设置自定义标题wx.openDocument 能否提供自定义打开的文档标题(显示在标题栏上的),因为ios调用wx.openDocument打开文档标题栏的名称很诡异,有时候是该页面的标题,有时候是上一个页面的标题,而在安卓端则是该文档的文件名,希望在调用的时候就可以通过设置显示自定义标题名称。
2022-07-11同款问题,附上代码片段:https://developers.weixin.qq.com/s/OviTGOm57Nrc 用最新的IDE打开 问题表现是:backgroundAudioManager.seek()不是预期中的跳转到指定刻度,而是加上指定刻度,导致跳转不准确、且无法后退播放。
windows系统下小程序BackgroundAudioManager.seek不准确?windows系统下小程序BackgroundAudioManager.seek方法 跳转的位置不对。周围所有的windows电脑试了都不对 代码片段 https://developers.weixin.qq.com/s/XlKok7mO7dqr 比如上面的代码片段中 一个4分多钟的音频,每次快进10秒,执行六七次就到最后播放完了 各位大佬有遇到的吗 根据我的测试,我觉得在windows上,每次seek,都是累加的,不像文档中描述的 “跳转到指定位置” 而别的平台是按照文档来的。
2021-07-15遇到同样问题
navigateTo跳转页面会偶现URI malformed?navigateTo 跳转页面,跳转到目标页面A, 偶现 URIError: URI malformed错误,导致页面无法渲染,请问如何处理? 跳转的页面地址 : /pages/activityDetail/index?id=41 出现的错误: SystemError (jsEnginScriptError) URI malformed URIError: URI malformed at encodeURIComponent (<anonymous>) at Array.map (<anonymous>) at g.value (http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2240456) at http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2244009 at g.value (http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2239898) at g.value (http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2242886) at et.p.__callPageLifeTime__ (http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2263822) at http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2294320 at Function.<anonymous> (http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2295109) at http://127.0.0.1:15691/appservice/__dev__/WAService.js:2:2255416
2021-07-01图片地址后面加个随机字符串
服务器端修改图片后没更新,小程序端需要怎么刷新?请教下,我的浏览器直接打开这个图片地址是更新后的图片了,但是小程序中打开还是旧的图片,我试过在微信开发者工具中清除全部缓存了,也没更新。这个需要怎么刷新?有大佬指导下吗? [图片]
2021-04-28关注!!!
pc打开体验版小程序报错,预览也不行?pc端打开体验版小程序和预览都会出现如下报错,在手机上则可以正常预览和打开。 pc微信版本 [图片] 报错如下 [图片] app-service.js: TypeError: Cannot read property 'customVersion' of undefined at i.getAccountInfoSync (file://5.js/:2:1743907) at i.function.i.(anonymous function) [as getAccountInfoSync] (file://5.js/:2:1403029) at Object.57 (file://6.js/:4399:287) at n (file://6.js/:4328:152) at Object.50 (file://6.js/:4399:209) at n (file://6.js/:4328:152) at file://6.js/:4328:1350 at file://6.js/:4399:66 at h (file://5.js/:2:2197130) at s (file://5.js/:2:2196389)
2020-10-28没用过uni-app
运行 uni-app 时报错?请问怎么解决运行命令 npm run dev:mp-weixin 报错如下: [图片]
2020-09-27不太熟悉这块业务哦
扫码支付请求的报“201订单号重复”错误多次修改数据的out_trade_no,但还是报订单号重复
2020-09-24遇到同样问题。本来尝试在app.json增加pageOrientation属性,发现当resizable: true, pageOrientation:"auto"时,windows电脑可以保持竖屏,却在手机上播放视频时无法横屏播放。目前没有发现好方法,持续关注
小程序设置resizable:true,在 iPad 上启用屏幕旋转支持,怎么才能在PC上保持竖屏?有没有计划增加旋转按钮什么的?
2020-09-23试下放在onCanPlay的回调里读取duration
求解答,关于InnerAudioContext的duration音频长度获取不到问题?问题1:ios手机播放音频 无法获取总时长,安卓正常获取 [图片][图片] console.log('handleInitAudio.src:' + src); this.innerAudioContext.onPlay(() => { console.log('开始播放') this.innerAudioContext.duration; setTimeout(() => { const durationStr = this.parseTime(this.innerAudioContext.duration) console.log('onPlay播放总时长durationStr:' + durationStr); this.setData({ durationStr: durationStr }) console.log('onPlay播放总时长data.durationStr:' + this.data.durationStr); }, 1000) }) let that =this; this.innerAudioContext.onCanplay(() => { // 这是一个迷,据说要手动先触发这个属性,后面才能用setTimeout获取真实时长 let duration = that.innerAudioContext.duration; console.log(that.innerAudioContext); console.log('初始化播放总时长innerAudioContext.duration:' + duration); setTimeout(() => { const durationStr = that.parseTime(that.innerAudioContext.duration) console.log('播放总时长durationStr:' + durationStr); that.setData({ durationStr: durationStr }) console.log('播放总时长data.durationStr:' + that.data.durationStr); }, 1000) }) 问题2 :部分安卓手机无法播放音频
2020-08-20遇到同样问题,等待修复,急!
播放视频出现滋滋声视频链接:https://jdk3t-video.oss-cn-shanghai.aliyuncs.com/video/2020/08/14/Bw8LISU9p22Qkk9CgwXYX1CTLx98PRB5.mp4 这个视频在安卓小程序内播放时声音会变成滋滋声。在ios设备微信7.0.14也有出现。
2020-08-20