多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
小程序js文件 ~~~ Page({ onLoad: function () { var that = this; wx.request({ url: 'http://127.0.0.1:8000/tp/', method: 'GET', success: function (res) { that.setData({ result: res.data }) } }) } }) ~~~ 小程序wxml文件 ~~~ <!-- wx:for 循环数据 {{已item.}}格式传输 --> <block wx:for-items="{{result}}"> <view style="width:100%; height: 50rpx"></view> <!--index默认为下标,item为每项--> <text>第{{index}}条数据 {{item.tetle}}</text> <image src='{{item.url}}'></image> </block> ~~~