下載地址:https://github.com/KuangPF/mp...css
export function getRequest(url, data) { var getRequest = wxPromisify(wx.request) return getRequest({ url: url, method: 'GET', data: data, header: { 'Content-Type': 'application/json' } }) }
而後再頁面就能夠調用後臺接口了,vue
wxRequest.getRequest("http://localhost:8763/permiBlog/getAllBlog",params).then(res=>{ console.log(res.data.code); if(res!=null && res.data.code=='0'){ for(var i=0;i<res.data.data.content.length;i++){ this.articleList.push(res.data.data.content[i]); } } });
須要注意的是,小程序調用後臺接口,是要用域名而且是https協議來調用,本地調試的時候,要設置爲不校驗合法域名
git
"enablePullDownRefresh": true
而後再首頁實現兩個方法github
// 上拉加載 onReachBottom: function () { //執行上拉執行的功能 this.getArticleList(this.page+1,5); }, // 中止下拉刷新 async onPullDownRefresh() { // to doing.. // 中止下拉刷新 wx.stopPullDownRefresh(); },
這樣小程序首頁就完成了。json