一:json時(shí)間格式化處理
分享者:大俠,原文地址
//打開(kāi)微信小程序后,部分模板綁定數(shù)據(jù)是通過(guò)接口調(diào)取的,當(dāng)遇到數(shù)據(jù)的時(shí)間被json格式化后,需要正常的顯示。可以通過(guò)擴(kuò)展一個(gè)方法去處理時(shí)間。
1.打開(kāi)utils里的utils.js ,也可以按照自己的習(xí)慣添加我們需要擴(kuò)展的函數(shù)renderTime,方法如下
-
function renderTime(date) {
-
var da = new Date(parseInt(date.replace("/Date(", "").replace(")/", "").split("+")[0]));
-
var Year = da.getFullYear(); //ie火狐下都可以
-
var Month = da.getMonth() + 1;
-
var Day = da.getDate();
-
var Hours=da.getHours();
-
var Minutes=da.getMinutes();
-
var Seconds=da.getSeconds();
-
var CurrentDate = "";
-
CurrentDate += Year + "-";
-
if (Month >= 10) {
-
CurrentDate += Month + "-";
-
}
-
else {
-
CurrentDate += "0" + Month + "-";
-
}
-
if (Day >= 10) {
-
CurrentDate += Day;
-
}
-
else {
-
CurrentDate += "0" + Day;
-
}
-
if (Hours <10) {
-
Hours = "0" + Hours;
-
}
-
if (Minutes < 10) {
-
Minutes ="0"+ Minutes;
-
}
-
if (Seconds < 10) {
-
Seconds ="0"+ Seconds;
-
}
-
return CurrentDate + " " + Hours + ":" + Minutes + ":" + Seconds;
-
}
-
//引用的話,只需要在你的頁(yè)面下的js里
-
var util = require('../../utils/util.js'); 你放置這個(gè)函數(shù)。
-
當(dāng)然,utils里的
-
//擴(kuò)展的方法需要在Module里去聲明
-
module.exports = {
-
renderTime:renderTime
-
}
-
調(diào)用方法。便是 util.renderTime(date);即可。
二:typeof cb == “function” && cb(that.globalData.userInfo)的理解
微信小程序官方demo以及很多代碼中會(huì)在函數(shù)中經(jīng)常出現(xiàn)typeof cb == “function” && cb(that.globalData.userInfo)一句。開(kāi)始很不明白,網(wǎng)上的回答大多也是一知半解,查了官方的api配合demo的代碼,終于搞清楚了。 代碼本身的含義是,判斷cb是不是函數(shù)類型同時(shí)將一個(gè)參數(shù)傳入名為cb的函數(shù)下,這樣看似乎還是不明白,那就加上源碼來(lái)看。 1.以下是官方demo中獲取用戶信息的函數(shù)定義
-
getUserInfo:function(cb){
-
console.log(‘getUserInfo 函數(shù)開(kāi)始執(zhí)行’);
-
var that = this
-
if(this.globalData.userInfo){
-
typeof cb == “function” && cb(this.globalData.userInfo)
-
}else{
-
//調(diào)用登錄接口
-
wx.login({
-
success: function () {
-
wx.getUserInfo({
-
success: function (res) {
-
console.log(‘用戶數(shù)據(jù)獲取成功’);
-
that.globalData.userInfo = res.userInfo
-
typeof cb == “function” && cb(that.globalData.userInfo)
-
}
-
})
-
}
-
})
-
}
-
}
2.以下是在index.js中的onLoad函數(shù)的代碼
-
onLoad: function () {
-
console.log(‘onLoad函數(shù)開(kāi)始執(zhí)行’)
-
var that = this
-
//調(diào)用應(yīng)用實(shí)例的方法獲取全局?jǐn)?shù)據(jù)
-
app.getUserInfo(function(userInfo){
-
//更新數(shù)據(jù)
-
that.setData({
-
userInfo:userInfo
-
})
-
console.log(‘用戶數(shù)據(jù)存入當(dāng)前頁(yè)面’);
-
})
-
}
解釋:在getUserInfo的方法定義中,接收了名為cb的參數(shù),使用時(shí)機(jī)就是在拿到用戶信息的時(shí)候,如果這個(gè)cb類型為函數(shù)就執(zhí)行名為cb這個(gè)函數(shù)。再看函數(shù)調(diào)用,在index.js的onLoad方法中調(diào)用了這個(gè)函數(shù)并定義了一函數(shù)作為參數(shù),函數(shù)的內(nèi)容就是將傳入的userInfo設(shè)置在當(dāng)前頁(yè)面的數(shù)據(jù)中。
執(zhí)行步驟:當(dāng)進(jìn)入到index頁(yè)面時(shí)首先會(huì)調(diào)用onLoad函數(shù),然后會(huì)執(zhí)行app.getUserInfo()函數(shù)(輸出可以先乎略),在getUserInfo()函數(shù)中會(huì)先判斷是本地是否保存有用戶信息,第一次執(zhí)行的時(shí)候肯定沒(méi)有走else,執(zhí)行登錄方法,拿到用戶信息然后執(zhí)行typeof cb == “function” && cb(that.globalData.userInfo) 執(zhí)行作為參數(shù)的函數(shù)的方法,按輸出信息走就是這樣一個(gè)過(guò)程,先輸出’onLoad方法開(kāi)始執(zhí)行’,然后是’getUserInfo 函數(shù)開(kāi)始執(zhí)行’,再然后是’用戶數(shù)據(jù)獲取成功’最后會(huì)輸出’用戶數(shù)據(jù)存入當(dāng)前頁(yè)面’。
|