注册小程序按照官方文档来就好了,一般一个身份证可以注册五个,一个邮箱可以注册一个。
然后下载稳定版的开发工具工具下载
当然 会TypeScript 也可以选择 TypeScript 模版,我这里选择的是 JavaScript 。
删除后的目录
index.wxml文件清空
index.js文件清空
云函数
云函数
在全局配置文件加
"cloudfunctionRoot": "cloud",
表示配置云函数
然后创建云函数这个文件夹 cloud,名字一定要对应
点击这里
这样就创建好对应的云文件夹了。
初始化
app.js也有系统自动生成的代码,直接删掉初始化云开发就好。
开通云开发和获取云环境ID
补充如何给小程序控件设置样式
.buttonStyle {
display: flex;
flex-direction: column;
align-items: center;
color: #aaa;
width: 128rpx;
height: 80rpx;
margin: 12rpx;
border-radius: 0%;
}
引用样式:
<button class="buttonStyle" bindtap='update' type="primary">修改专业</button>
<button class="buttonStyle" bindtap='delete' type="warn" >删除学生</button>
<button class="buttonStyle" bindtap="upFile" plain="true">上传文件</button>
这样就达到设置样式的目的了。