- 用wx.openDocument打开文档, 参数fileType在开发工具里成了必填项?
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html 文档里写道,wx.openDocument时, fileType不是必填项。 我用文档里提供的这段示例代码: wx.downloadFile({ // 示例 url,并非真实存在 url: 'http://example.com/somefile.pdf', success: function (res) { const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log('打开文档成功') } }) } }) 测试了,在真机确实如此,可以正常打开文档。 但是在我的开发工具里无法运行,console里报错。 "openDocument:fail filetype not supported" 我加了fileType后才能在开发工具打开文档。
2020-02-03 - 开发文档中BackgroundAudioManager的示例代码在开发工具和真机上都无法播放音频?
开发文档 https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.html 里的以下示例代码,无法在我的开发工具里运行,也无法在真机上运行。 const backgroundAudioManager = wx.getBackgroundAudioManager() backgroundAudioManager.title = '此时此刻' backgroundAudioManager.epname = '此时此刻' backgroundAudioManager.singer = '许巍' backgroundAudioManager.coverImgUrl = 'http://y.gtimg.cn/music/photo_new/T002R300x300M000003rsKF44GyaSk.jpg?max_age=2592000' // 设置了 src 之后会自动播放 backgroundAudioManager.src = 'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46' 开发工具里无法播放音频, 调试器console里打印出的错误是: errCode: 10001errMsg: 4真机上,也无法播放视频。下拉页面后,可以看到背景里音频播放器界面已经启动,但是该音频是停止状态。手动点“播放”后,没有反应。 开发者工具版本 Stable v1.02.1911180 (Win64) 开发者工具基础库版本 2.1.0 开发者工具微信版本 7.0.4 真机微信版本 7.0.10 操作系统 Android 能复现问题的简单代码片段: https://developers.weixin.qq.com/s/y2NUaJmm7Ne2 谢谢!
2020-01-29