Skip to content

Commit

Permalink
#5 #11 第5次实验代码 服务器数据
Browse files Browse the repository at this point in the history
  • Loading branch information
XiuzhuMo committed Dec 1, 2017
1 parent 7e5dc49 commit 081ef78
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions 1514080901221/pages/index/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ Page({
scrollTop: 100,
windowHeight: 0,
inputVal:'',
moodList: [{ id: 0, content: '开心,今天真的是元气满满的一天。', img: '', time: '2016年10月2日 00:80' },
{ id: 1, content: '啊,好像要下雨了,我可以选择品读一本书静静地听雨了', img: '', time: '2012年10月2日 00:80' },
{ id: 2, content: '[email protected],这个是我的邮箱哦', img: '', time: '2010年10月2日 00:80' },
{ id: 2, content: '[email protected],这个是我的邮箱哦', img: '', time: '2010年10月2日 00:80' },
{ id: 2, content: '[email protected],这个是我的邮箱哦', img: '', time: '2010年10月2日 00:80' },
{ id: 2, content: '[email protected],这个是我的邮箱哦', img: '', time: '2010年10月2日 00:80' },
{ id: 2, content: '[email protected],这个是我的邮箱哦', img: '', time: '2010年10月2日 00:80' }]
moodList: []
},
showInput: function () {
this.setData({
Expand Down Expand Up @@ -46,6 +40,19 @@ Page({
},
onLoad: function (options) {
var _this = this;
wx.request({
url: 'https://infoaas.com/data/1514080901221/moodList.json',
header: {
'content-type': 'application/json' // 默认值
},
success: function (res) {
console.log(res.data);
_this.setData({
moodList: res.data.moodList
});
}
})

wx.getSystemInfo({
success: function (res) {
console.log(res.windowHeight);
Expand Down

0 comments on commit 081ef78

Please sign in to comment.