微信小程序学习笔记之表单提交与PHP后台数据交(2)

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>

页面加载,显示如下:

微信小程序学习笔记之表单提交与PHP后台数据交

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/40278d7c209a04ae1dcd2fc440e57a5d.html