微信小程序云开发上传数据注意事项

微信小程序云开发上传数据注意事项

微信小程序在上传数据时要转换为相应的格式,否则会当做字符串,如

db.collection("test").add({
      data:{
        name,
        age,
        score
      },
      success(res){
        wx.showToast({
          title: "保存成功",
        })
        that.filter();
      }
    })

本来想上传上去的年龄和成绩属于Number类型,但实际是String,这时候需要使用parseInt转换

db.collection("test").add({
      data:{
        name,
        age:parseInt(age),
        score:parseInt(score)
      },
      success(res){
        wx.showToast({
          title: "保存成功",
        })
        that.filter();
      }
    })

这时候保存下去就属于Number类型。

你可能感兴趣的:(微信小程序)