首先获取数据把数据打印出来
接口文档
第一现在app.js 赋值 如:app.js文件
App({ globalData: { //资讯接口 zixu_url: "http://192.168.1.107:8080/ls/api/client/info/list", //资讯id接口 info_url:"http://192.168.1.107:8080/ls/api/client/info/id/", // 资讯详情id 的评论数据接口 admin_comment:"http://192.168.1.107:8080/ls/api/client/comment/list/info/" }})
index.js文件
onLoad:function(){ // 生命周期函数--监听页面加载 //'?page=0'+'&size=5' 展示前五条 var zix_data= app.globalData.zixu_url+'?page=0'+'&size=5'; this.getMovieListData(zix_data) // console.log(postList) }getMovieListData: function (url) { var that = this; wx.request({ url: url, method: 'post', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT header: { 'content-type': 'application/json' }, success: function (res) { that.setData({ postList:res.data.objects, }); ); } }, fail: function (error) { // fail console.log(error) } })
}
index.wxml文件
{ {title}}
本人只是为了个人技术回顾
第二节 如何下滑加载指定的数量数据第三节 跳转详情页面的跳转第四节 详情页面评论和 评论时间的转换遍历展示