微信小程序如何调用图片接口API并居中显示

这篇文章主要介绍了微信小程序如何调用图片接口API并居中显示,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

写完调用天气接口的demo之后,小程序调用天气接口并且渲染在页面,顺便再调用了一下美图的接口API:

url

wxml:

<view wx:for="{{list}}" wx:key="index"> <image src="https://www.jb51.net/{{list.img}}" > </image> </view>

js:

Page({ data: { list: [] }, onLoad: function (options) { wx.request({ url: 'https://api.apiopen.top/getImages', header: { 'content-type': 'application/json' }, success: res => { console.log(res.data) this.setData({ //第一个data为固定用法,第二个data是json中的data list: res.data.result[0], }) } }) }, })

css:

.imagesize { display: flex; justify-content: center; } .imagesize image { width: 400rpx; height: 400rpx; }

微信小程序如何调用图片接口API并居中显示

注意

以上代码里面每次刷新的时候,都会随机调用接口数据

因为接口文档里面有说明,传0或者不传会随机推荐图片

微信小程序如何调用图片接口API并居中显示

所以我们在掉接口的时候可以在url后面绑定参数:

url: 'https://api.apiopen.top/getImages?page=1&count=2',

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

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

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