黄色的那块写了呀 “已到达创建上限”
微信开发者平台创建第三方提示创建失败,已到达创建上限?[图片]什么原因
2020-07-16无图无代码,让我们猜咯?
救命!挺急的!?小程序载入了视频之后,在手机浏览的时候看不了是怎么回事啊?
2020-07-16const wxContext = cloud.getWXContext() // 在这里加一句 const req_type = event.req_type
云函数使用switch()函数报错?云函数使用switch()函数报错 [图片] exports.main = async (event, context) => { const wxContext = cloud.getWXContext() switch (req_type) { case 'Add': { return await db.collection('RepairOrder').add({ data: { date: event.date, time: event.time, communityId: event.communityId, orderType: event.orderType, orderProgress: event.orderProgress, projectName: event.projectName, projectType: event.projectType, projectPrice: event.projectPrice, descValue: event.descValue, address: event.address, contactInfo: event.contactInfo, status: event.status, userId: wxContext.OPENID, userInfo: event.userInfo, createAt: new Date() } }).then( res => { console.log(res) return res }) } case 'Recall' : { return await db.collection('RepairOrder').where({ _id: event._id }) .update({ data: { status: event.status, deleteAt: new Date() } }).then( res => { console.log(res) return res }) } case 'Repairman' : { return await db.collection('RepairOrder').where({ _id: event._id }) .update({ data: { orderProgress: _.push(event.progressItem), } }).then( res => { console.log(res) return res }) } default: { return } } js文件 wx.cloud.callFunction({ name: 'add_RepairOrder', data: { req_type: 'Add', date: this.data.date, time: this.data.time, communityId: this.data.communityId, orderType: this.data.orderType, orderProgress: this.data.orderProgress, projectName: this.data.projectName, projectType: this.data.projectType, projectPrice: this.data.projectPrice, descValue: this.data.descValue, address: this.data.address, contactInfo: this.data.contactInfo, status: this.data.status, userInfo: app.globalData.userInfo } }).then( res => { console.log(res) // 强制刷新上一页 var pages = getCurrentPages(); // 获取页面栈 var prevPage = pages[pages.length - 2]; // 上一个页面 prevPage.setData({ update: true }) wx.hideLoading() wx.navigateBack({ delta: 1 }) })
2020-07-16网站没有SSL,另外网址里那些页面的名字又是game,又是room,又是dealer的,乍一看有点吓银呀,跟赌博网站似的呢。。
为什么刚做好的网站,就会被微信判为被多人举报,停止访问?这个网站刚做好,是一家教育培训机构网站,里面的内容都是介绍教育方面的,从来就没有在微信端进行分享活动,引诱用户点击,但是在微信端口访问这个域名时却提示“禁止访问且被多人举报”,如下图: [图片] 已经按照申请恢复步骤提交了很多次,但是这个问题就是没有解决,上面提示的网址,在网站中就压根打不开。
2020-07-15云环境确实删不掉。上代码看看你的云函数?
云函数调用连接数据库极其不稳定?项目拥有多个云环境,其中一个环境没有用但是无法删除,云函数调用成功概率大概是10%-20%的样子,且有时候云函数不报错返回为空
2020-07-15// 看下API wx.previewImage()
如何实现象微信那样,点击图片全屏显示?再点一下又恢复
2020-07-09你的网址违反什么了?
刚购买的新域名,都还没分享过,就被封了,申请恢复也一直被拒绝,怎么办?域名aiecho.cn年后刚注册的,之前也从来没有分享过就被封了,申请恢复多次都被拒绝,我以为经过备案之后能够恢复,前段时间也备案过了,但是昨天申诉还是被拒绝。现在已经不知道该怎么办了。。。。 [图片] [图片] 备案号鲁ICP备20027500号-1 在安全管家的页面上提交了链接申诉,邮件发回来说是微信策略拦截 [图片]
2020-07-09const type=event.type let whereQuery = { 'type1': { /* 查询字段1... */ }, 'type2': { /* 查询字段2... */ }, 'type3': { /* 查询字段3... */ } }[type] || { /* type为空或者false的默认字段 */ } return await db.collection("ns_users").where( whereQuery )...
在云函数中查询数据的时候能不能根据小程序端传过来的值进行查询?const type=event.type; return await db.collection("ns_users").where({ staname:_.in(['学员']), checkinfo:true }).orderBy("posttime","desc").limit(10).skip(page).get() 在云函数中,type是我从小程序端传递进来的,我想要根据这个type 获取不同的结果,如果type是空的话就还是查询这些,如果type有值那就查询另一个字段,我不想这样写,看看还有别的办法吗? const type=event.type; if(type){ return await db.collection("ns_users").where({ staname:_.in(['学员']), checkinfo:true, type:type }).orderBy("posttime","desc").limit(10).skip(page).get() }else{ return await db.collection("ns_users").where({ staname:_.in(['学员']), checkinfo:true }).orderBy("posttime","desc").limit(10).skip(page).get() }
2020-07-09小程序能分享到朋友圈了???
小程序分享到朋友圈,打开是空白页面,vconsole查看有报错?小程序分享到朋友圈,部分手机打开正常,部分手机打开是空白页面,vconsole查看有报错: iPhonex 打开报错: [图片]
2020-07-09上代码
IOS同时设置textarea的minHeight和maxHeight,min-heigh不起作用?微信版本号:7.0.13 基础库版本号:2.11.2 https://developers.weixin.qq.com/s/retxlFmJ7xil 代码地址和效果 重新测试,发现同时设置min-height和max-height的时候,在ios手机,只识别max-height,android手机只识别min-height。textarea有默认高度150px,所以设置了 height:auto;
2020-06-30