同样的问题,问下是否解决?
map组件添加标记点,标记点label.textAlign模拟器运行正常,真机运行下该字段无效[图片] [图片][图片][图片]真机上该字段设置无效,手机型号是安卓红米K30至尊纪念版
2022-01-18遇到同样的问题,无论输入什么违规文字,都返回ok
小程序,文字安全API,msgSecCheck不管传入违禁词,但是返回ok,怎么回事?const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { const wxContext = cloud.getWXContext() try { const result = await cloud.openapi.security.msgSecCheck({ content: event.text }) if (result && result.errCode.toString() === '87014'){ return { code: 500, msg: '内容含有违法违规内容', data: result } }else{ return { code: 200, msg: 'ok', data: result } } } catch (err) { // 错误处理 if (err.errCode.toString() === '87014') { return { code: 500, msg: '内容含有违法违规内容', data: err } } return { code: 502, msg: '调用security接口异常', data: err } } } js代码 wx.cloud.callFunction({ name: 'contentcheck', data: { text: "台湾台独" } }).then((res) => { if (res.result.code == "200") { //检测通过 console.log('监测通过') } else { //执行不通过 wx.showToast({ title: '包含敏感字哦。', icon: 'none', duration: 3000 }) } }) 官方帮忙看一下问题出在了哪里。。。急急急
2021-12-05我现在的计费方式是“按量付费”,按照文档说明 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/billing/postpayment.html 小程序开通按量付费后,将无法再切换到预付费支付方式,请开发者按需操作; 是不是只能每秒20个连接?如果是这样的话,高并发小程序应用能否使用云开发的数据库? [图片]
微信云开发中提交请求每秒钟20次的限制怎么破?调用微信云开发接口,向微信云开发数据库写入记录,超过每秒20次后,报如下错误: "errcode":-501000,"errmsg":"Your current request times equals to `21` in a second, which exceeds the frequency limit `20` for a second. Please reduce the frequency of calls 如何解决呢?升级配额的话 我现在的计费方式是“按量付费”,按照文档说明 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/billing/postpayment.html 小程序开通按量付费后,将无法再切换到预付费支付方式,请开发者按需操作; 是不是只能每秒20个连接?如果是这样的话,高并发小程序应用能否使用云开发的数据库? [图片]
2021-03-30