您好,登錄后才能下訂單哦!
這篇文章主要介紹了微信小程序制作音樂播放器的代碼怎么寫的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇微信小程序制作音樂播放器的代碼怎么寫文章都會有所收獲,下面我們一起來看看吧。
網絡請求的函數為:
function getAlbumInfo(id,callback){
var data = {
albummid: albummid,
g_tk: 5381,
uin: 0,
format: 'json',
inCharset: 'utf-8',
outCharset: 'utf-8',
notice: 0,
platform: 'h6',
needNewCode: 1,
_: Date.now()
};
wx.request({
url: 'http://c.y.qq.com/v8/fcg-bin/fcg_v8_album_info_cp.fcg',
data: data,
header: {
'Content-Type': 'application/json'
},
success: function (res) {
console.log(res);
if (res.statusCode == 200) {
callback(res.data);
} else {
}
}
});
}
module.exports = {
...
getAlbumInfo:getAlbumInfo
}
復制代碼
頁面的布局代碼為:
<view class="list-top">
<view class="top-info">
<view class="top-info-inner">
<view class="top-info-text">
<view class="top-info-title">{{albumInfo.name}}</view>
<view class="top-info-base">
<text>{{albumInfo.singername}}</text>
<text style="margin-left: 5px;">{{albumInfo.aDate}}</text>
<text style="margin-left:10px;">{{albumInfo.genre}}</text>
</view>
</view>
<view class="top-play"></view>
</view>
</view>
<image class="top-img" mode="aspectFit" src="{{coverImg}}"></image>
<view class="top-back"></view>
</view>
<view class="song-list" style="background:{{listBgColor}}">
<view class="song-item" wx:for="{{albumInfo.list}}" data-data="{{item.data}}" data-mid="{{item.songmid}}">
<text class="song-index">{{index+1}}</text>
<view class="song-item-title">{{item.songname}}</view>
<view class="song-item-text">
<block wx:for="{{item.singer}}">
<block wx:if="{{index!=0}}">|</block>
{{item.name}}
</block>
</view>
</view>
</view>
<view class="desc" style="background:{{listBgColor}}">
<view class="desc-title">簡介</view>
<text>{{albumInfo.desc}}</text>
</view>
復制代碼
簡介部分的格式文件:
.desc {
box-sizing: border-box;
font-size: 14px;
padding: 40px 10px;
color: #fff;
line-height: 20px;
}
.desc-title {
text-align: center;
width: 100%;
font-size: 16px;
margin-bottom: 20px;
}
復制代碼
加載數據的代碼為:
var MusicService = require('../../services/music');
var app = getApp()
Page({
data: {
albumInfo: {},
coverImg: '',
},
onLoad: function (options) {
// 頁面初始化 options為頁面跳轉所帶來的參數
var mid = app.globalData.zhidaAlbummid;
MusicService.getAlbumInfo(mid, this.setPageData)
},
setPageData: function (data) {
if (data.code == 0) {
var albummid = data.data.mid;
var img = 'http://y.gtimg.cn/music/photo/mid_album_500/' + albummid.slice(-2, -1) + '/' + albummid.slice(-1) + '/' + albummid + '.jpg'
this.setData({albumInfo: data.data, coverImg: img});
}
},
})
復制代碼
這里的點擊事件與前文相同,就不再重復了。
另外,我們在首頁里未完成的兩個點擊事件,現在也可以完成了。先看電臺的點擊事件,這個事件與我們剛剛完成的一樣,具體代碼為:
radioTap: function (e) {
var dataSet = e.currentTarget.dataset;
MusicService.getRadioMusicList(dataSet.id, function (data) {
wx.navigateTo({
url: '../play/play'
});
if (data.code == 0) {
var list = [];
var dataList = data.data;
for (var i = 0; i < dataList.length; i++) {
var song = {};
var item = dataList[i];
song.id = item.id;
song.mid = item.mid;
song.name = item.name;
song.title = item.title;
song.subTitle = item.subtitle;
song.singer = item.singer;
song.album = item.album
song.img = 'http://y.gtimg.cn/music/photo_new/T002R150x150M000' + item.album.mid + '.jpg?max_age=2592000'
list.push(song);
}
app.setGlobalData({
playList: list,
playIndex: 0
});
}
});
},
復制代碼
這里面getRadioMusicList為網絡請求,具體代碼為:
function getRadioMusicList(id,callback){
var data = {
labelid: id,
g_tk: 5381,
uin: 0,
format: 'json',
inCharset: 'utf-8',
outCharset: 'utf-8',
notice: 0,
&nnbsp; platform: 'h6',
needNewCode: 1,
_: Date.now(),
}
wx.request({
url: 'https://c.y.qq.com/v8/fcg-bin/fcg_v8_radiosonglist.fcg',
data: data,
header: {
'Content-Type': 'application/json'
},
success: function (res) {
if (res.statusCode == 200) {
callback(res.data);
} else {
}
}
});
}
module.exports = {
...
getRadioMusicList:getRadioMusicList
}
復制代碼
另一部分為搜索結果里歌曲的點擊事件
musuicPlay: function (e) {
var dataSet = e.currentTarget.dataset;
var playingSongs = app.globalData.playList;
if (typeof dataSet.index !== 'undefined') {
var index = dataSet.index;
var item = this.data.searchSongs[index];
var song = {};
var album = {};
album.mid = item.albummid
album.id = item.albumid
album.name = item.albumname;
album.desc = item.albumdesc
song.id = item.songid;
song.mid = item.songmid;
song.name = item.songname;
song.title = item.songorig;
song.subTitle = '';
song.singer = item.singer;
song.album = album;
song.time_public = item.time_public;
song.img = 'http://y.gtimg.cn/music/photo_new/T002R150x150M000' + album.mid + '.jpg?max_age=2592000'
this.addPlayingSongs(song);
}
},
復制代碼
前面的內容與我們寫過的一樣,最后我們沒有直接更新全局變量而是調用了一個新方法,因為前文所有的點擊事件都更新了整個播放列表,而我們點擊某一首歌曲時,我們希望添加這首歌到已有的列表中,而不是先清空它。
addPlayingSongs: function (song) {
var playingSongs = app.globalData.playList; //獲取當前的播放列表
var index = -1;
if (typeof playingSongs === 'undefined') { //判斷列表是否為空
playingSongs = [];
playingSongs.push(song);
app.setGlobalData({ //如果是空的話,直接更新全局變量
playList: playingSongs,
playIndex: 0
});
} else { //不為空的話我們先判斷當前列表是否包含選定歌曲
for (var i = 0; i < playingSongs.length; i++) { //遍歷整個列表
var item = playingSongs[i];
if (item.mid == song.mid) { //如果發現有mid相同的(即同一首歌)
index = i; //獲取這首歌在列表里的序號
break;
}
}
if (index != -1) { //歌曲已存在
app.setGlobalData({
playIndex: index //用我們獲取的序號更新當前播放序號
});
} else { //不存在的情況
playingSongs.push(song);
index = playingSongs.length - 1; //將歌曲加入播放列表,播放序號改為列表最后一項
app.setGlobalData({
playList: playingSongs,
playIndex: index
});
}
}
wx.navigateTo({
url: '../play/play'
});
},
關于“微信小程序制作音樂播放器的代碼怎么寫”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“微信小程序制作音樂播放器的代碼怎么寫”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。