制作一个包含多个音乐播放列表选项的数组
我正在尝试使用该标签制作 HTML5 播放列表。我想将所有歌曲、它们的名称、描述等存储在一个数组中。但我不知道如何很好地使用数组。
我现在的想法是:
var songBase = '/songs/'
var playlist = {};
playlist = {
'Bleeding Love' : 'Bleeding_love.mp3',
'Don\'t Forget' : 'Dont_forget.mp3',
'Finish' : 'Finish.mp3',
'In the Rain' : 'In_the_rain.mp3',
'Ready to Fall' : 'Ready_to_fall.mp3',
'Realize' : 'Realize.mp3',
'Righted All Your Wrongs' : 'Righted_all_your_wrongs.mp3',
'These Walls' : 'These_walls.mp3'
}
我真正需要做的是拥有两个以上的选择。我什至不知道如何从已有的数组中提取任何数据。
有什么想法吗?
I am trying to make a HTML5 playlist using the tag. I want to store all the songs, their name, description, etc... in an array. I don't know how to use arrays very well though.
What I am thinking right now is this:
var songBase = '/songs/'
var playlist = {};
playlist = {
'Bleeding Love' : 'Bleeding_love.mp3',
'Don\'t Forget' : 'Dont_forget.mp3',
'Finish' : 'Finish.mp3',
'In the Rain' : 'In_the_rain.mp3',
'Ready to Fall' : 'Ready_to_fall.mp3',
'Realize' : 'Realize.mp3',
'Righted All Your Wrongs' : 'Righted_all_your_wrongs.mp3',
'These Walls' : 'These_walls.mp3'
}
What I really need to be able to do is have more than 2 options. I also don't even know how to extract any of the data from the array that I already have.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从技术上讲,您在那里使用对象文字 ({}),而不是数组 ([])。
您可以使用对象文字数组来达到您的目的。
然后您可以像这样访问这些:
或者在循环中:
Technically you are using an object literal ({}) there and not an array ([]).
You can use an array of objects literals for your purposes.
You can then access these like:
Or in a loop: