導航:首頁 > 軟體知識 > 小程序雲函數如何解決時區問題

小程序雲函數如何解決時區問題

發布時間:2023-09-19 18:47:54

『壹』 微信小程序同步微信公眾號文章(二)

首先確認是否有相應的介面許可權,這里主要用到獲取素材相關的介面,可以看到對應介面文檔,個人號還是有對應許可權的。

在新增了永久素材後,開發者可以分類型獲取永久素材的列表:

1、獲取永久素材的列表,也包含公眾號在公眾平台官網素材管理模塊中新建的圖文消息、語音、視頻等素材 。

2、臨時素材無法通過本介面獲取。

3、調用該介面需https協議。

實現的邏輯還是比較簡單的,具體分兩個步驟:

1、獲取公眾號的access_token

獲取公眾號的access_token的在前文中已經實現。

基於微信小程序雲函數的方式獲取微信公眾號access_token -

2、遍歷調用公眾號永久素材列表介面獲取數據

調用素材列表介面,獲取相應的文章信息,這里主要獲取公眾號的圖文信息(type為news),介面調用請求說明:

http請求方式: POST

https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN

調取素材列表之後在小程序中通過視圖組件scroll-view來實現,主要有標題、封面圖、摘要:

<scroll-view class="container"scroll-y='true' style="height:{{height}}px" bindscrolltolower='lower'>

<block wx:for="{{res}}" >

<view class='feed-item' id='{{item.title}}' bindtap='getDetial'>

<view>

<text >{{item.title}}</text>

</view>

<view style='text-align: center'>

<image src='{{item.image_url}}'>tupian </image>

</view>

<view>

<text >{{item.digest}}</text>

</view>

</view>

</block>

</scroll-view>

文章列表在頁面首次載入時就獲取:

/**

* 生命周期函數--監聽頁面載入

*/

onLoad: function (options) {

wx.getSystemInfo({

success: (res) => {

this.setData({

height: res.windowHeight

})

}

})

this.getData()

}

函數getData()實現步驟,具體請求函數用雲函數來實現,先從調取acces_token:

// 雲函數入口文件

const cloud = require('wx-server-sdk')

const news = require('New')

cloud.init()

// 雲函數入口函數

exports.main = async (event, context) => {

let token = null;

await cloud.callFunction({

name:'token'

}).then(function(data){

token = data.result;

});

let offset = event.offset;

let count = event.count;

let nw = new news(token);

let rst = nw.getWechatPosts(offset,count);

return rst;

}

然後調取文章列表信息,每次獲取10條信息:

//獲取文章列表

getData(){

var that = this;

let pgno = this.data.pageNo+1;

let result = this.data.res;

wx.cloud.callFunction({

name:'news',

data:{

offset:this.data.offset,

count:this.data.count

},

success:function(res){

var resArr = [];

let body = res.result.body;

let total_count = body.total_count;//總共圖文數量

let item_count = body.item_count;//本次調用數量

let item = body.item;

let page_total = parseInt((total_count + that.data.count - 1) / that.data.count);

let mud = total_count % that.data.count;

const db = wx.cloud.database();

for (let i = 0; i < item.length; i++) {

let news_item = item[i].content.news_item;

//單圖文消息及多圖文消息

for (let j = 0; j < news_item.length; j++) {

let title = news_item[j].title;//標題

let url = news_item[j].url;//詳細地址

let image_url = news_item[j].thumb_url;//封面圖片地址

let digest = news_item[j].digest;//摘要

let author = news_item[j].author;//作者

let content = news_item[j].content;

resArr.push(new nw(total_count, item_count, title, url, image_url, digest, author, content));

let res_id = null;

db.collection('content').where({

_id: url

}).get({

success: function (res) {

res_id = res.data[0]._id;

}

})

if (res_id === url){

}else{

db.collection('content').add({

data: {

_id: url,

content: content,

title: title

},

success: function (res) {

}

})

}

}

that.setData({

res: result.concat(resArr),

page_total: page_total,

pageNo: pgno,

mud: mud

});

}

}

})

}

scroll-view組件到底觸發事件實現函數:

lower() {

//總頁數18/10=1

var pageno = this.data.pageNo;

var page = this.data.page_total;

console.log("總頁數:" + page+",第"+pageno+"頁"+"zuohouy:"+this.data.mud)

if (pageno > page) {//page 4

wx.showToast({ //如果全部載入完成了也彈一個框

title: '我也是有底線的',

icon: 'success',

ration: 300

});

return false;

} else {

wx.showLoading({ //期間為了顯示效果可以添加一個過度的彈出框提示「載入中」

title: '載入中',

icon: 'loading',

});

let offset = this.data.offset;

let count = this.data.count;

offset = this.data.offset + this.data.count;

console.log("offset:" + offset+"count:"+count)

this.setData({

offset: offset,

count: count

});

setTimeout(() => {

this.getData();

wx.hideLoading();

}, 1500);

}

}

閱讀全文

與小程序雲函數如何解決時區問題相關的資料

熱點內容
怎麼代理體育彩票 瀏覽:529
交易貓一般多久完成交易 瀏覽:16
應用程序有什麼用 瀏覽:839
扶貧助手微信小程序填錯怎麼改 瀏覽:60
西大街到棗園傢具市場怎麼坐車 瀏覽:1002
鼓樓菜市場有哪些 瀏覽:296
唯品會程序異常時怎麼回事 瀏覽:81
nba2k20怎麼交易明星球員 瀏覽:60
海康威視一級代理有哪些 瀏覽:806
mes數據互通有哪些 瀏覽:954
你是如何獲取房屋信息的 瀏覽:464
安全系統的技術是什麼 瀏覽:687
怎麼介紹醫院信息 瀏覽:130
拼多多的測圖數據哪裡看 瀏覽:892
如何評價梁寧產品思維 瀏覽:290
kpl數據分析師干什麼的 瀏覽:803
中國賣的好的外國產品有哪些 瀏覽:206
金融交易的核算是什麼 瀏覽:986
相親一天後怎麼發信息 瀏覽:991
有什麼小程序可以分析商業圈 瀏覽:243