uniapp uniCloud 云开发上传图片与查看图片

效果图:

1. 开通uniCloud 地址:https://unicloud.dcloud.net.cn 选择阿里云,需要实名认证。

2. 在uniCloud 的 web控制台创建服务空间,然后在云数据库新建数据表tableImages

uniapp uniCloud 云开发上传图片与查看图片_第1张图片

3. 在HBuilder X 新建项目。

uniapp uniCloud 云开发上传图片与查看图片_第2张图片
关联创建好的云服务空间
uniapp uniCloud 云开发上传图片与查看图片_第3张图片

4. 新建云函数

uniapp uniCloud 云开发上传图片与查看图片_第4张图片
addImage 云函数(把数据写入表)

'use strict';
const db = uniCloud.database()
exports.main = async (event, context) => {
	const collection = db.collection('tableImages') //云数据库里的表名 ,记录上传图片到云存储后返回的fileID
	const res = await collection.add(event)  //event为客户端上传的参数
	return res
};

selectImage 云函数(从表读取数据)

'use strict';
const db = uniCloud.database()
exports.main = async (event, context) => {  //event为客户端上传的参数    
    const collection = db.collection('tableImages') // 获取表'tableImages'的集合对象
	const res = await collection
				.orderBy('createTime','desc')  //排序
				.get() //获取数据


    //const res = await collection.limit(100).get() // 获取表中的100条数据,结果为json格式
	//const res =await collection.where({'username':'王达'}).get() //条件查询
	
    return res // 返回json给客户端
};

5. 上传部署云函数

函数编写完成后要上传才能使用
uniapp uniCloud 云开发上传图片与查看图片_第5张图片
函数上传成功后,在web控制台可见到函数
uniapp uniCloud 云开发上传图片与查看图片_第6张图片

6.在pages新建页面,编写客户端页面代码。

uniapp uniCloud 云开发上传图片与查看图片_第7张图片

上传图片的代码

<template>
	<view class="">
		<button class="btn" type="default" @click="upload">上传图片</button>
		<button class="btn" type="default" @click="browseImage">查看云图片</button>
	</view>
</template>

<script>
	export default {
		data() {
			return {}
		},
		methods: {
			upload() {
				uni.chooseImage({
					count: 1,
					success(res) {
						console.log(res);
						if (res.tempFilePaths.length > 0) {
							uni.showLoading({
								title: '上传中...'
							})
							
							let filePath = res.tempFilePaths[0]					
							// callback方式 ,进行上传操作
							uniCloud.uploadFile({
								filePath: filePath,  //要上传的文件对象
								cloudPath: Date.now() + '.jpg',  //保存在云端的文件名,这里以时间戳命名
								success(res) {
									//console.log(res.fileID)
									let imageUrl = res.fileID  //云端返回的图片地址
									uniCloud.callFunction({  //调用云端函数,把图片地址写入表
										name: 'addImage',  //云函数名称
										data: {				//提交给云端的数据
											imageUrl: imageUrl,									
											createTime: Date.now()
										},
										success: (res) => {	
											//console.log('数据插入成功')
											console.log(res)
										},
										fail: (err) => {
											console.log(err)
										},
										complete: () => {
											
										}				
									})
								},
								fail(err) {
									console.log(err)
								},
								complete() {
									uni.hideLoading()
								}
							});		
						}
					}
				});
			},
			
			browseImage() {				
				uni.navigateTo({  //跳转到指定页面
					url: "../browseImage/browseImage",
				});
			}
		}
	}
</script>

<style>
	.btn{
		margin: 10px;
		background-color: #4CD964;
	}
</style>

浏览云端图片的代码

<template>
	<view class="free-panel-title">
		<view class="free-WaterfallFlow">
		  <block>
			<view class="flex-wrap" v-for="(item,index) in imgList" :key="index" v-if="index % 2 != 0">
				<image mode="widthFix" :src="item.imageUrl" :data-src="item.imageUrl" @click="clickimg" ></image>
				<view>评论</view>
				<view> {{item.createTime}} </view>
			</view>
		  </block>
		  <block>
			<view class="flex-wrap" v-for="(item,index) in imgList" :key="'2-'+index" v-if="index % 2 == 0">
				<image mode="widthFix" :src="item.imageUrl" :data-src="item.imageUrl" @click="clickimg" ></image>
				<view>评论</view>
				<view> {{item.createTime}} </view>
			</view>
		  </block>
		</view>
		<!--返回顶部-->
		<view class="top" :style="{'display':(flag===true? 'block':'none')}">
			<image class="topc" @click="top" src="../../static/top.png" ></image>
		</view>
	</view>
</template>

<script>

	export default {
		data() {
			return {				
				imgList: [],				
				flag: false
			}
		},
		
		onLoad() {
			uni.showLoading({
				title: '查询中...'
			})
			uniCloud.callFunction({  //调用云函数
				name:'selectImages',  //云函数名称
				success: res => {
					//console.log(res)
					this.imgList = res.result.data  //云端返回的数据
					this.imgList.forEach( item => {  //循环调用函数happenTimeFun,将时间戳转为年月日
					    item.createTime = this.happenTimeFun(item.createTime)  
					})
				},
				fail(e) {
					console.log(e)
				},
				complete: () => {
					uni.hideLoading()
				}	
			})
		},
		
		methods: {	
			happenTimeFun(num){  //时间戳数据处理
				let date = new Date(num);  //时间戳为10位需*1000,时间戳为13位的话不需乘1000				
				let y = date.getFullYear();
				let MM = date.getMonth() + 1;
				MM = MM < 10 ? ('0' + MM) : MM;//月补0
				let d = date.getDate();
				d = d < 10 ? ('0' + d) : d;//天补0
				let h = date.getHours();
				h = h < 10 ? ('0' + h) : h;//小时补0
				let m = date.getMinutes();
				m = m < 10 ? ('0' + m) : m;//分钟补0
				let s = date.getSeconds();
				s = s < 10 ? ('0' + s) : s;//秒补0
				return y + '-' + MM + '-' + d; //年月日
				//return y + '-' + MM + '-' + d + ' ' + h + ':' + m+ ':' + s; //年月日时分秒
			}, 
			
			// 图片预览
			clickimg(event) {
				var imgurl = event.currentTarget.dataset.src
				var currentUrl = event.currentTarget.dataset.src   //获取点击图片的地址, **对应