收藏
回答

请问怎样在组件内部访问云数据库?

在一个自定义组件里,如果想根据openid查询,似乎办不到TT

attached:function(){
    this._getUserInfo()
  },    
methods:{
_getUserInfo:function(){
      console.log(this.properties.contentItem)
      db.collection('users').where({
        _openid: this.properties.contentItem.user-open-id
      }).get({
        success: function (res) {
          console.log(res.data)
        }
      })
}

像这样子,好像不可以访问,返回的是一个空集,直接用db.collection('users').get()也不行...主要是想在组件渲染的时候即时获取信息

回答关注问题邀请回答
收藏
登录 后发表内容
问题标签