Skip to content

微信小程序——云开发报错

微信小程序 | July 18, 2021


文章链接:https://blog.csdn.net/qq_43201350/article/details/118882900

在这里插入图片描述

VM849 WAService.js:2 Error: errCode: -502005 database collection not exists | errMsg: [ResourceNotFound] Db or Table not exist. Please check your request, but if the problem cannot be solved, contact us.

原因:可能是集合名称写错了

集合应为users, 而我写成了user

在这里插入图片描述

    db.collection('user').where({
      location: _.geoNear({
        geometry: db.Geo.Point(this.data.longitude, this.data.latitude),
        // 最大距离与最小距离,单位为米
        minDistance: 0,
        maxDistance: 100000
      }),
      // 当用户开启位置共享时,才可获取附近人的信息
      isLocation: true
    }).field({
      latitude: true,
      longitude: true,
      userPhoto: true
    }).get().then((res) => {
      console.log(res.data, 'res...');
    })