amp-audio单击按钮更改源

时间:2018-11-06 07:43:51

标签: html5-audio amp-html amp-bind

我有一个带有async getUsers() { let result = await this.http.get(this.pathAPI + 'user') .toPromise() .then(function (res) { return result = res; }) .catch((err) => { return(err) }) return result; } 的页面,该页面接收一个普通的AMP-LIST,其中包含指向某些mp3文件的URL链接。像这样:

json file

我已经将此列表渲染为一些普通标签。我还有一个{"Items": [ {"mp3":"https://my.url.com/mymp31.mp3" , "name" : "file1"}, {"mp3":"https://my.url.com/mymp31.mp3" , "name" : "file1"}, {"mp3":"https://my.url.com/mymp31.mp3" , "name" : "file1"}, {"mp3":"https://my.url.com/mymp31.mp3" , "name" : "file1"}, {"mp3":"https://my.url.com/mymp31.mp3" , "name" : "file1"} ] } ,其来源应根据项目进行更改。

我的HTML最终会是这样的:

AMP-AUDIO

现在是问题所在: 当我点击divs时,音频文件的源似乎已更改,但实际的新文件没有再次呈现。有什么想法吗?

0 个答案:

没有答案