You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
377 B
19 lines
377 B
5 years ago
|
const app = getApp()
|
||
|
|
||
|
Page({
|
||
|
data: {
|
||
|
},
|
||
|
|
||
|
onLoad: function (options) {
|
||
|
if (app.globalData.openid) {
|
||
|
this.setData({
|
||
|
openid: app.globalData.openid
|
||
|
})
|
||
|
}
|
||
|
|
||
|
console.group('数据库"实时数据推送"文档')
|
||
|
console.log('https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/realtime.html')
|
||
|
console.groupEnd()
|
||
|
},
|
||
|
})
|