续存不了的,只能做小程序迁移
公司注销了,小程序怎么样存续?公司注销了,小程序怎么样存续?
2023-12-01申请变换法人?
小程序报错问题?主体负责人必须与法定代表人一致,出现法定代表人已经退休,只是公司还挂着他名字,这种情况需要如何解决?
2023-12-01要么没配置子域名白名单,要么就是自己服务器配置有问题。可以直接浏览器访问你的文件路径看是否读取到txt内容
js接口安全域名验证失败?已经按照提示正常上传至网站根目录文件夹内,已经排除多次尝试验证都不行,用主域名测试可以正常检测到,子域名无法检测到验证文件。
2023-09-28可以实现内嵌外链,已实践测试过跳转到对应的外链。
小程序如何嵌入公众号外链H5?政府小程序,想接入医院公众号下的页面。有的页面通过Oauth网页授权,对方可以提供https://open.weixin.qq.com/connect/oauth2/authorize?appid=xxxxx&redirect_uri=https://www.xxxx.com.cn/index.html?compid=xxx&response_type=code&scope=snsapi_base&state=1#wechat_redirect的跳转路径,使用<web-view> 嵌入提示我不是开发者,[图片] 若我让对方公众号设置我为开发者,并在我的小程序下配置业务域名,是否就可以嵌入该页面? 或者是否有其他实现方式。
2023-09-28这个域名好像是不能带端口的把,通过nginx代理一下,然后弄个子父域名,就行,之前我是这样规避这样的问题的。 这个我之前记录的坑,可以看看有没有帮助 https://developers.weixin.qq.com/community/develop/article/doc/00026e46924a30eddbce713d651413
redirect_uri域名与后台配置不一致 错误码:10003 域名已经配置了只能使用80端口吗?公众号接口:https://open.weixin.qq.com/connect/oauth2/authorize [图片] 请求域名: [图片]
2023-06-25打日志看看吧
云函数获取多维数组中的元素长度失败,小程序端可以正常获取,为什么?let that = this console.log(that.data.partroledList[0].patrol.patrolItems.length) 上面是小程序端调用多维数组,能正常获取长度 下面是云函数端获取多维数组中的数组获取长度失败 try { let StuInfo=[]; StuInfo = JSON.parse(event.arr)//将获取到的数据对象赋值给变量,接下来需要用该对象向Excel表中添加数据 let dataCVS = `studentInfo-${Math.floor(Math.random()*1000000000)}.xlsx` console.log(dataCVS) //声明一个Excel表,表的名字用随机数产生 let alldata = []; let row = ['风险点', '风险名称', '巡查项', '1', '2', '3', '4', '5', '6', '7', '8', '9','10','11', '12', '13', '14', '15', '16', '17', '18', '19','20']; //表格的属性,也就是表头说明对象 alldata.push(row); //将此行数据添加到一个向表格中存数据的数组中 //接下来是通过循环将数据存到向表格中存数据的数组中 let temp=[]; for (let key = 0; key < StuInfo.length; key++) { let arr = []; //temp.push(StuInfo[key].patrol.patrolItems[0]); arr.push(StuInfo[key].patrol.riskPoints); arr.push(StuInfo[key].patrol.riskName); arr.push(StuInfo[key].patrol.patrolItems.length);//这里获取不到长度,云函数端拿不到 // for (let index = 0; index < (temp.length; index++) { // arr.push(StuInfo[key][0][1][index]) // } alldata.push(arr) } var buffer = await xlsx.build([{ name: "mySheetName", data: alldata }]); //将表格存入到存储库中并返回文件ID return await cloud.uploadFile({ cloudPath: dataCVS, fileContent: buffer, //excel二进制文件 }) } catch (error) { console.error(error) }
2023-06-04这个我测试过,按照文档的流程是没问题的,可以看看我写的流程,看看有没有帮助
第三方平台代注册小程序接口返回system error?{"errcode":-1,"errmsg":"system error rid: 6455eb2f-5b994cc3-4b3a1a5b"} 每次访问接口的时候都会返回这个错误,检查了一下数据和文档里要求的数据是一致的,为什么会这样?
2023-05-06https://developers.weixin.qq.com/community/develop/article/doc/00026e46924a30eddbce713d651413看看这个是否可以帮助到你
openid获取失败?data: {errcode: 40066, errmsg: "invalid前端发送code到后端 wx.login({ success: (res) => { const usercode=res.code myrequest({url:'/getopenid',data: {usercode:usercode},method: 'POST'}).then(res1=>{ console.log(res1) }) 后端正常接收 [Object: null prototype] { usercode: '0e3p9p1w3uYLA03L3k4w3wiXaF3p9p1J' } 后端代码 exports.getopenid=async (req,res)=>{ const code=req.body console.log(code) var params = { grant_type:'authorization_code', appid: '正确在详情里复制', //secret 更新时间20230504 secret: '已经于20230504重置并更新', js_code:code } params=JSON.stringify(params) axios({ method:'GET', url:'https://api.weixin.qq.com/sns/jscode2session'+params }).then(res2=>{ res.send(res2.data) }) } 前端收到的返回信息 {data: {…}, header: {…}, statusCode: 200, cookies: Array(0), errMsg: "request:ok"}cookies: []data: {errcode: 40066, errmsg: "invalid url, rid: 6453aca1-0ab89620-2cd6e1ce"}errMsg: "request:ok"header: {X-Powered-By: "Express", Access-Control-Allow-Origin: "*", Content-Type: "application/json; charset=utf-8", Content-Length: "73", ETag: "W/"49-BmpGmYt4SlV421N/g74TFXpWHNA"", …}statusCode: 200__proto__: Object请求大师指点,不想开云
2023-05-05正常的,你做个不同机型判断就行
微信模板消息相同消息体不同手机显示不一致?keyword1 中含有 \r\n 换行 在iphone中可以正常显示 在android有时正常有时只显示 \r\n 前的数据
2023-05-05是不是使用了第三方代开发模式
为什么我公众号配置了ip白名单,还是提示errCode 40164服务器ip不在白名单?[图片]
2023-03-29