- 小程序绑定微信以后能自动关注公众号?
小程序绑定微信以后能自动关注公众号?
2020-03-18 - 小程序云开发多表关联查询
小程序云开发怎么实现多表关联查询
2019-06-19 - 微信小程序云开发多个字段怎么传入两张表里面
微信小程序云开发多个字段怎么传入两张表里面,这样写哪里错了 // pages/companyInfo/companyInfo.js const db = wx.cloud.database({ env: 'znyz-30f4bf' }) Page({ /*页面的初始数据*/ data: { company:"", phoneNumber:"", password:"" }, onChange0: function (event) { this.setData({ company: event.detail }) }, onChange1: function (event) { this.setData({ phoneNumber: event.detail }) }, onChange2: function (event) { this.setData({ password: event.detail }) }, addUser: function () { if (this.data.company != "" && this.data.phoneNumber != "" && this.data.password != "") { this.addCompany(); } }, //添加一个公司 //往companyinfo传公司名称跟id addCompany: function () { var that = this; db.collection('companyinfo').add({ data: { company: that.data.company, }, success(res) { console.log(res) wx.navigateBack({ delta: 1 }) }, fail: console.error }) }, //往userinfo传联系方式跟密码 addCompany: function () { var that = this; db.collection('userinfo').add({ data: { phoneNumber: that.data.phoneNumber, password: that.data.password, }, success(res) { console.log(res) wx.navigateBack({ delta: 1 }) }, fail: console.error }) }, })
2019-06-18 - 微信小程序程序认证问题
[图片] 就是这个我去年已经认证过了在5月9号 今年已经5月17了,不是说小程序需要每年都要认证一次,为什么今年没有提示我过期?????????
2019-05-17