InnerAudioContext.play收藏我的收藏
收藏
我的收藏基础库 1.0.0 开始支持本方法,这是一个同步方法。
播放音频。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
InnerAudioContext.play()
参数说明
无
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
【代码示例1】:播放网络音频文件
const dataUrl = "https://someaudiourl"; const innerAudioContext = tt.createInnerAudioContext(); innerAudioContext.autoplay = true; innerAudioContext.src = dataUrl; innerAudioContext.onError((error) => { tt.showModal({ title: "播放出错", content: `详细错误信息:${error.errMsg}`, }); console.log("播放出错", error); });
【代码示例2】:播放本地临时路径音频文件
const innerAudioContext = tt.createInnerAudioContext(); const dataUrl = "https://someaudiourl"; // 合法的音频资源地址 tt.downloadFile({ url: dataUrl, // 待下载的音频文件,需要在小程序开发者平台配置downloadFile 合法域名 success: (res) => { if (res.statusCode === 200) { // 下载到本地的文件临时地址 console.log("下载成功", res.tempFilePath); innerAudioContext.src = res.tempFilePath; innerAudioContext.onError((error) => { tt.showModal({ title: "播放出错", content: `详细错误信息:${error.errMsg}`, }); console.log("播放出错", error); }); innerAudioContext.play(); } }, fail: (err) => { console.log("下载失败", res.errMsg); tt.showModal({ title: "下载失败", content: err.errMsg, showCancel: false, }); }, });
点击纠错