搭建微信小程序系列随机一句诗和图片防ONCE


aihuafeng66t
克里斯蒂亚诺诺 2024-01-11 18:24:30 52809 赞同 0 反对 0
分类: 资源 标签: 运维
搭建微信小程序系列随机一句诗和图片防ONCE

搭建微信小程序系列随机一句诗和图片防ONCE

 

概况

运行效果

运行效果

后端

后端使用随便一个php站点,服务器使用阿里云腾讯云百度云都可以。

推荐使用宝塔搭建,使能ssl.

代码下载: https://gitee.com/tui.guige/once/tree/master
backend 后端php代码

前端

前端使用uni-app ,新建一个项目,模板使用默认即可:
基本目录结构

项目目录结构
文件:config.js

export default{
	baseUrl: "填写你自己站点的路径"
}

文件: index.vue

<template>
	<view class="content">
		<image class="logo" :src=img_url></image>
		<view class="text-area">
			<text class="title">{{title}}</text>
		</view>
		<view class="text-area">
			<text class="source">{{source}}</text>
		</view>
	</view>
</template>

<script>
	
	import config from '@/common/config.js';
	
	export default {
		data() {
			return {
				title: 'ONCE-DEMO',
				img_url: '',
				source: '作者'
			}
		},
		onLoad() {
			uni.request({
				url: config.baseUrl + 'site.php',
				data: {
					'id': 'Your ID 推荐使用QQ号 或者手机号'
				},
				header: {
					'content-type': "application/x-www-form-urlencoded"
				},
				method:"POST",
				success: (res) => {
					//console.log(res.data)
					var res_data = res.data.data;
					if(res_data.code !== 1) { //如果请求失败,不等于1状态码
					    this.title = res_data.msg;
						return uni.showToast({
							title:"请求失败!"
						})
					}
					//数据请求成功
					this.title = res_data.content;
					this.img_url = res_data.img;
					this.source = res_data.source;
				}
				
			})
		},
		methods: {

		}
	}
</script>

<style>
	.content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.logo {
		height: 320rpx;
		width: 480rpx;
		margin-top: 150rpx;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50rpx;
	}

	.text-area {
		display: flex;
		justify-content: center;
	}

	.title {
		font-size: 36rpx;
		color: #8f8f94;
	}
	
	.source {
		font-size: 30rpx;
		color: #8f8f94;
		text-align: right;
	}
</style>

如果您发现该资源为电子书等存在侵权的资源或对该资源描述不正确等,可点击“私信”按钮向作者进行反馈;如作者无回复可进行平台仲裁,我们会在第一时间进行处理!

评价 0 条
克里斯蒂亚诺诺L1
粉丝 0 资源 831 + 关注 私信
最近热门资源
银河麒麟桌面操作系统备份用户数据  127
统信桌面专业版【全盘安装UOS系统】介绍  122
银河麒麟桌面操作系统安装佳能打印机驱动方法  114
银河麒麟桌面操作系统 V10-SP1用户密码修改  105
最近下载排行榜
银河麒麟桌面操作系统备份用户数据 0
统信桌面专业版【全盘安装UOS系统】介绍 0
银河麒麟桌面操作系统安装佳能打印机驱动方法 0
银河麒麟桌面操作系统 V10-SP1用户密码修改 0
作者收入月榜
1

prtyaa 收益393.62元

2

zlj141319 收益218元

3

1843880570 收益214.2元

4

IT-feng 收益209.03元

5

风晓 收益208.24元

6

777 收益172.71元

7

Fhawking 收益106.6元

8

信创来了 收益105.84元

9

克里斯蒂亚诺诺 收益91.08元

10

技术-小陈 收益79.5元

请使用微信扫码

加入交流群

请使用微信扫一扫!