代码拉取完成,页面将自动刷新
同步操作将从 凌晨一点写东东/wmusic 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//app.js
App({
onLaunch: function () {
var autodown = wx.getStorageSync(this.key.isAutoDown),
autoplay = wx.getStorageSync(this.key.isAutoPlay);
if(typeof autodown == 'undefined' || ('' + autodown) == ''){ wx.setStorageSync(this.key.isAutoDown, true) }
if(typeof autoplay == 'undefined' || ('' + autoplay) == ''){ wx.setStorageSync(this.key.isAutoPlay, true) }
},
getUserInfo:function(cb){
var that = this
if(this.globalData.userInfo){
typeof cb == "function" && cb(this.globalData.userInfo)
}else{
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
that.globalData.userInfo = res.userInfo
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
})
}
},
globalData:{
userInfo:null
},
recordPlayInfo : function(info){
/*
{
type:{
hash : { //hash码
num : 1, // 播放次数
singername : '歌手',
songname : '歌名',,
alum : '专辑/照片',
loc_alum : '本地',
url : '播放地址',
loc_url : '本地地址',
lasttime : 1000 //最后一次播放时间
}
},
type :{}
}
*/
var that = this,data = wx.getStorageSync(that.key.recordPlayInfo);
if(data == ''){ data = {}; }
var _type = data[info.type] || {},_info = _type[info.hash];
if(typeof _info == 'undefined'){
info.num = 1;
_info = info;
}else{
for(var key in info){ _info[key] = info[key]; }
_info.num = (_info.num || 1 ) + 1;
}
if(typeof data[info.type] === 'undefined'){ data[info.type] = {}; }
data[info.type][info.hash] = _info;
wx.setStorage({ key : that.key.recordPlayInfo , data : data});
}
,getPlayInfos : function(cb){
if(typeof cb == "function"){
var info = wx.getStorageSync(this.key.recordPlayInfo);
cb(info == '' ? {} : info);
}
}
,getLastPlayInfo : function(cb){
var that = this;
if(typeof cb == "function"){
var info = wx.getStorageSync(that.key.lastPlayInfo);
cb(info == '' ? {} : info);
}
},
setLastPlayInfo : function(info){
var that = this;
this.getLastPlayInfo(function(res){
for(var key in info){
res[key] = info[key];
}
wx.setStorageSync(that.key.lastPlayInfo,res);
});
},
key : {
//是否自动下载
isAutoDown : '_is_autodown'
,isAutoPlay : '_is_autoplay'
,lastPlayInfo: '_last_playinfo'
,recordPlayInfo : '_record_play_info'
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。