- movable-area拖动图片排序,如何达到微信朋友圈那般效果呀?
movable-area拖动图片排序,如何达到微信朋友圈那般效果呀? 代码片段:https://developers.weixin.qq.com/s/BawFJRm27GRq
06-11 - wx.getBackgroundAudioManager() 播放时怎么隐藏显示播放那个小窗口?
[图片]wx.getBackgroundAudioManager() 播放时怎么隐藏图片右上角那个小窗口呀?
05-17 - video播放音频时,封面为什么显示的是上一个视频的内容?
video手动点击切换播放音频文件时,封面显示的是上一个视频的内容,而当视频播放完毕,自动切换到下一个音频文件时,封面是正常的纯黑色,请教各方大佬怎么搞呀?谢谢 微信版本:8.0.47 基础库:3.3.4 开发测试手机:华为mate50
03-09 - requestBackgroundPlayback怎么列表循环呢?
video的后台音频播放模式怎么列表循环呢,开启loop循环播放,可以单个循环播放,我想要列表循环,可以么?谢谢 bindended() { //当播放到末尾时触发 ended 事件 const { loop } = this.data; if (loop === 'all') { const { pay, list, } = this.data; let index = pay.index; list[index].pay = null; index++ if (index > list.length - 1) { index = 0 } list[index].pay = true; Object.assign(pay, list[index]); pay.index = index; this.setData({ list, pay }) wx.createVideoContext('myVideo').play(); } }, onReady() {//生命周期函数--监听页面初次渲染完成 this.videoContext = wx.createVideoContext('myVideo') }, onHide() {//生命周期函数--监听页面隐藏 const { pause, backstagePlay } = this.data; if (pause && backstagePlay) { //进入后台音频播放模式。 this.videoContext.requestBackgroundPlayback() this.videoContext.play() } },
2023-12-17 - 配置隐私授权后,麦克风录音,定位和ocr-navigator都不能用了呢?
配置隐私授权后,小程序录音和调音功能,定位和ocr-navigator身份证识别都不能用了呢?
2023-10-20 - fs.getSavedFileList获取不到fs.saveFile保存的文件呢?
getSavedFileList() { const fs = wx.getFileSystemManager() fs.getSavedFileList({ success(res) { const fileList = res.fileList const data = [] // 遍历文件列表,判断哪些是音频文件 fileList.forEach((file) => { const filePath = file.filePath, { song, ext } = that.getUrlFileName(filePath); if (ext === 'mp3' || ext === 'm4a' || ext === 'aac' || ext === 'wav') { data.push({ song, avatar: '', url: filePath, create_time: formatTime('yyyy-MM-dd hh:mmss', file.createTime), }) } }) that.setData({ data }) } }) }, //下载事件 DownloadFile() { const { url, song } = that.data.play; wx.downloadFile({ url, success: (res) => { // 下载成功后调用保存文件方法 const fs = wx.getFileSystemManager() fs.saveFile({ //下载成功后保存到本地 tempFilePath: res.tempFilePath, filePath: `${wx.env.USER_DATA_PATH}/${song}.m4a`, success: (res) => { console.log(res.savedFilePath) // 保存成功后提示用户 that.showToast('音频已保存到本地', 'success') }, fail: (res) => { // 保存失败提示用户 that.showToast('保存音频失败', 'none') }, }) }, fail: (res) => { // 下载失败提示用户 that.showToast('下载音频失败', 'none') }, }) },
2023-05-26 - wx.getLocation接口一直通不过审核呢?
wx.getLocation接口一直通不过审核呢?申请上十次了十次
2023-04-20 - 小程序怎么实时获取麦克风声音频率?
做个古琴调音器,需要实时获取声音频率,请教一下有现成的API没呀,有什么办法可以做到呢?类似的小程序有个子博调音器 [图片]
2023-03-13