Page({ onLoad: function () { var that = this wx.request({ url: 'https://www.msllws.top/Getdata', headers: { 'Content-Type': 'application/json' }, success: function (res) { that.setData({ artinfo: res.data }) } }) } })
前台data.wxml:
<view wx:for="{{artinfo}}" wx:for-item="artinfo"> <view>{{artinfo.article_title}}</view> <image src="https://www.jb51.net/{{artinfo.thumbnail}}"></image> </view>
页面加载,显示如下: