小程序
小游戏
企业微信
微信支付
扫描小程序码分享
db.collection('c')
.where({
username:this.data.username
})
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
先看看课程吧
https://developers.weixin.qq.com/community/business/CourseSearch?query=%E4%BA%91%E5%BC%80%E5%8F%91
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以是变量,你现在这种写法就是支持的
可以
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
先看看课程吧
https://developers.weixin.qq.com/community/business/CourseSearch?query=%E4%BA%91%E5%BC%80%E5%8F%91
onLoad:function(){
wx.getUserInfo({
success: res => {
this.setData({
userInfo: res.userInfo,
username: res.userInfo.nickName,
hasUserInfo: true
})
var username = this.data.username
console.log(username)
}
})
this.select()
},
select:function(){
var that = this;
console.log(this.data.username)
const db = wx.cloud.database()
const _ = db.command;
db.collection(’c’)
.where({
username:this.data.username
})
.get({
success: function(res) {
that.setData({
user:res.data
})
}
})
},
或者看看文档了解一下生命周期 https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page-life-cycle.html
可以是变量,你现在这种写法就是支持的
可以
可以