我在本地文件夹添加了一个mp3文件,然后测试的时候本地是可以播放的,编译后的文件也是没有超过2m的,但是预览和上传后都无法播放,是不是因为需要将这个文件uploadfile过啊,如果是的话这个url怎么填,填阿里云吗
js代码:
onReady: function () {
// this.audioCtx = wx.createAudioContext(‘myAudio’)
// this.audioCtx.setSrc(’…/…/media/111.mp3’)
// this.audioCtx.play()
},
data: {
// poster:’…/…/img/11.jpg’,
// name:‘asd’,
// author:‘asd’
}
// audioPause:function(){
// console.log(2);
// this.audioCtx.pause()
// },
// audioPlay:function(){
// this.audioCtx.play()
// }
wxml代码:
<!-- <view class=“audio” >
<view class=‘yinpin’ >
<audio poster="{{poster}}" name="{{name}}" author="{{author}}" src="{{src}}" id=“myAudio” controls loop></audio>
</view>
<button type=“primary” bindtap=‘audioPlay’>播放</button>
<button type=“primary” bindtap=“audioPause”>暂停</button>
</view>
<view class=‘photo’>
</view>
-->