uniapp使用微信云数据库
微信云开发文档
web端共享云数据库
1.小程序环境共享 2.未登录模式 3.公众号使用云开发 / 极简示例 / HTML (参考) 4.在template.h5.html引入云开发 Web SDK
<script src="https://res.wx.qq.com/open/js/cloudbase/1.1.0/cloud.js"></script>
5.自定义文件cloudbase.js
export async function initCloudBade(){
var app = new cloud.Cloud({
identityless: true,
resourceAppid: '资源方 AppID',
resourceEnv: '资源方环境 ID',
})
await app.init()
const db = app.database();
const collection = db.collection("order");
collection
.where({
})
.watch({
onChange: function(snapshot) {
console.log('数据库数据变化', snapshot)
},
onError: function(err) {
console.error('the watch closed because of error', err)
}
})
}
6.在App.vue引入cloudbase.js
import {initCloudBade} from './cloudbase.js'
onLaunch: function() {
initCloudBade()
}
|