07 2024 档案

摘要:最近项目比较赶,等八月份慢慢把内容补充出来 阅读全文
posted @ 2024-07-28 18:23 suN(小硕) 阅读(8) 评论(0) 推荐(0) 编辑
摘要:getData(){ db.collection("pro1").get() .then(res=>{ console.log(res) }) }, `res`是一个变量,它被用来存储`db.collection("pro1").get()`这个异步操作的返回结果。 `db.collection(" 阅读全文
posted @ 2024-07-23 10:46 suN(小硕) 阅读(11) 评论(0) 推荐(0) 编辑
摘要:hadoop篇二 阅读全文
posted @ 2024-07-23 10:45 suN(小硕) 阅读(3) 评论(0) 推荐(0) 编辑
摘要:hadoop占用 阅读全文
posted @ 2024-07-08 14:45 suN(小硕) 阅读(4) 评论(0) 推荐(0) 编辑
摘要:首先是.wxml文件,此处为固定数据的新增 <button type="primary" bind:tap="addData"> //调用.js中addData方法 插入数据 </button> 对应.js文件 //添加数据 addData(){ wx.showLoading({ //showLoa 阅读全文
posted @ 2024-07-04 17:42 suN(小硕) 阅读(6) 评论(0) 推荐(0) 编辑
摘要://.js文件const db = wx.cloud.database() Page({ //页面的初始数据 data: { dataObj:"" //定义对象dataObj }, //查询数据 getData(){ db.collection("pro1").where({ //pro1为数据库名 阅读全文
posted @ 2024-07-04 16:16 suN(小硕) 阅读(24) 评论(0) 推荐(0) 编辑
摘要:printf 和 cout 均是C/C++中常用的两种输出方式 一、printf 优点:1. 灵活的格式化: printf提供了丰富的格式化选项,如宽度、填充字符、对齐等。2. 适用于多种数据类型: printf可以输出各种内置数据类型,如整数、浮点数、字符等。3. 易于理解: 对于有经验的程序员来 阅读全文
posted @ 2024-07-04 09:46 suN(小硕) 阅读(129) 评论(0) 推荐(0) 编辑