码迷,mamicode.com
首页 > 其他好文 > 详细

小程序的后台数据 前端加载时页面展示

时间:2018-06-30 16:21:43      阅读:746      评论:0      收藏:0      [点我收藏+]

标签:function   result   json   header   事件   nload   onload   get   type   

onLoad: function (options) {
// var secondId = options.id;
var that = this;
wx.request({
url: ‘http://gank.io/api/xiandu/categories‘,
method: "get",
header: {
‘content-type‘: ‘application/json‘ // 默认值
},
success: function (res) {
console.log(res.data.results);
that.setData({
zhihu: res.data.results
//res代表success函数的事件对,data是固定的,stories是是上面json数据中stories
})
},
fail:function(res){
console.log(2)
}
})
}
 
 
结构
<block wx:for="{{zhihu}}">
<text style=‘display:block‘>{{item.name}}</text>
</block>

小程序的后台数据 前端加载时页面展示

标签:function   result   json   header   事件   nload   onload   get   type   

原文地址:https://www.cnblogs.com/liuliang389897172/p/9247251.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!