首页 > 数据库 >uniCloud-用db schema在客户端访问数据库

uniCloud-用db schema在客户端访问数据库

时间:2023-10-09 19:11:41浏览次数:44  
标签:item res 数据库 db uniCloud schema

  1. 先下载所有db schema
    image
  1. 在前端代码中直接访问数据库表拿数据
index.vue
<template>
	<view class="content">
		<view v-for="item in dataList" :key="item._id">
			{{item.name}}---{{item.gender}}---{{item.age}}
		</view>
	</view>
</template>

<script>
	// DB schema
	const db = uniCloud.database()

	export default {
		data() {
			return {
				title: 'Hello',
				dataList: [],
				dataNum: 5
			}
		},
		onLoad() {
			this.getData();
		},
		methods: {
			getData() {
				db.collection("users").get().then(res => {
						this.dataList = res.result.data
						// console.log(res);
					},
					err => {
						console.log(err.message);
					})
			}
		}
	}
</script>

image

image

标签:item,res,数据库,db,uniCloud,schema
From: https://www.cnblogs.com/unity-yancy/p/17752907.html

相关文章

  • Typecho博客网站迁移:MySQL ➡️ MarialDB
    目录1.引言2.Typecho的自定义配置迁移3.数据库迁移:MySQL->MarialDB3.1在原服务器中备份并导出数据库文件3.2将“backupdb.sql”文件拷贝至新服务器并导入数据4.Nginx配置5.Handsome主题操作1.引言由于服务、价格等因素更换云服务器是很常见的情况,本文记录了Typecho博......
  • MongoDB常用查询
    1.数据库数据说明#集合:school#文档:stu#结合字段:id,学号、姓名、电话、性别、年龄、学历、备注#初始化20条数据useschoolfor(varnum=1;num<=20;num++){db.stu.insert({id:num,no:"SN"+num,name:"name"+num,tel:"111......
  • MongoDB基础知识
    1.简介MongoDB官方文档菜鸟教程1、NoSQL(NotOnlySQL),不仅仅是SQL,主要是指非关系型数据库,是对不同与传统的关系型数据库的数据管理系统的统称2、NoSQL用于超大规模数据的存储,这些类型的数据存储吧需要固定的模式,无需多余的操作就可以横向扩展1.2NoSQL和RDBMS的区分......
  • XSD(Schema)教程
    XSD(Schema)教程schema教程XMLSchema是以XML语言为基础的,它用于可替代DTD。一份XMLschema文件描述了XML文档的结构XMLSchema语言也被称为XMLSchemaDefinition(XSD)(XMLSchema定义).在本章教程你将学习如何读取和建立XMLSchemas,以及为什么XMLSchemas比DTDs的功能更为......
  • uniCloud-云对象基本用法
    在项目的uniCloud---cloudfunctions文件夹上右键,新建云函数/云对象单选框选择"云对象",命名,创建云对象代码constdb=uniCloud.database()module.exports={ _before:function(){}, //定义云对象异步函数 asyncget(num){ returnawaitdb.collection("user......
  • BACnet转Modbus协议采集网关
    DNP3.0、Lonworks和KNX是三种在智能建筑和楼宇自动化领域中常用的协议,而Modbus协议是一种在工业自动化领域广泛应用的协议。将DNP3.0、Lonworks、KNX协议转换为Modbus协议在实践中可以提高不同系统之间的互操作性,从而实现更高效和智能的建筑管理。将DNP3.0、Lonworks、KNX协议转换......
  • xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance(xsi:schemaLocation详解)
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"中xsi的意思是:本xml文件中要用到某些来自xsi代表的“http://www.w3.org/2001/XMLSchema-instance”这个命名空间的元素 比如用来引入无命名空间schema文件的noNamespaceSchemaLocation="XXX";以及引入自带命名空间的sch......
  • entity-framework 'scaffold-dbcontext' 未被识别为 cmdlet、函数、脚本文件或可操
    //出现此错scaffold-dbcontext:Theterm'scaffold-dbcontext'isnotrecognizedasthenameofacmdlet,function,scriptfile,oroperableprogram.Checkthespellingofthename,orifapathwasincluded,verifythatthepathiscorrectandtry......
  • MongoDB下载安装入门
    MongoDB下载安装入门一.MongoDB下载安装mongodb官网下载不了,MongoDB下载、安装、配置、使用,如何下载MongoDB数据库,MongoDB入门-CSDN博客按照文章一→六:安装,下载,环境变量配置等等MongoDBv4.2版安装目录:C:\ProgramFiles\MongoDB\Server\4.2\bin二.安全认证注意!!!一定要......
  • closemuRUnlockIfHeldByScan
     2023/10/0904:24:37tick[mysql]2023/10/0904:24:37packets.go:37:readtcp192.100.1.15:60029->47.113.12.126:3309:wsarecv:Aconnectionattemptfailedbecausetheconnectedpartydidnotproperlyrespondafteraperiodoftime,orestablishedconne......