更新记录
1.2.0(2024-08-19)
下载此版本
随机画廊图库api,调用后可随机获得一张图片,二次元 随机图库 随机图 美图 画廊
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.0 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
介绍
本功能基于轻语API
轻语API提供一键生成二维码、OCR文字识别、文字转语音、随机图库、智能Ai助手、地理编码获取(逆地理编码,从内容中获取地址信息(含经纬度))等等API
<template>
<view>
<image v-if="imageUrl" :src="imageUrl" style="width: 750rpx;" mode="widthFix"></image>
<view style="position: fixed;bottom: 200rpx;left: 200rpx;right: 200rpx;text-align: center;">
<view @click="nextImage" class="btn">换一张图</view>
<navigator url="/pages/index/index" style="margin-top: 20rpx;">查看其他API</navigator>
</view>
</view>
</template>
<script>
export default {
data() {
return {
imageUrl: undefined
}
},
onLoad() {
this.nextImage();
},
methods: {
nextImage(){
let that = this;
that.imageUrl = undefined;
uni.request({
method:'POST',
url:'https://5555api.com/data/api/fetchImageByRand',
data:{
apikey: 'test_app_key_5555api.com',
},
success(res) {
that.imageUrl = res.data.data.data;
console.error('请求成功:', res.data.data.data);
},
fail() {
}
})
}
}
}
</script>
<style>
.btn{
color: seagreen;font-weight: bold;border: 2rpx solid seagreen;border-radius: 8rpx;padding: 10rpx 24rpx;
}
.btn:active{
background-color: mediumseagreen;
}
</style>