[图片]
为什么request之后可以console出数据,但是无法传回wxml页面?onLoad: function(t) { var e = this; wx.request({ url: "http://www.xlczg.cn/api/index.php?m=jk&c=new", header: { 'content-type': 'application/x-www-form-urlencoded' }, success:function(t) { console.log(t.data); e.setData({ news: t.data }); } }) } <view class="li" wx:for="{{news}}" wx:key="key"> <navigator url="../article-detail/article-detail?id={{item.id}}"> <image src="http://www.xlczg.cn{{item.litpic}}"></image> <text class="p">{{item.title}}</text> </navigator> </view> console没有报错
2020-02-14