请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
真机调试,自己添加的log为什么再console中没有打印?开发者工具版本号:1.06.2401092 微信版本:8.0.54 本身项目是unity转小程序,unity 和 我js中添加的log,在真机运行中,均不打印,但是在微信开发者工具下运行确可以打印。 开发者工具中正常打印如下: [图片] 真机调试打不出来自定义log如下: [图片] network中也都是空的,但实际是有请求http的 [图片] 请帮忙看一下 谢谢
2024-12-12你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企微后台自建应用关联小程序,如何打开体验版?我在企微管理后台创建了一个新的应用, 应用主页设置里面关联了一个小程序, 但是在企微打开就直接去到了正式版, 如果才能点击该应用跳转体验版??
2024-12-12请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
sse流式输出requestTask.abort()没效果?微信小程序流式输出 终止输出 使用requestTask.abort()无效
2024-12-12你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
订阅消息在企业微信中出现错误,怎么解决?// 判断是否是企业微信PC端 async isEnterpriseWeChatPC() { const { platform, environment } = await wx.getSystemInfo(); console.log('平台、环境',platform,environment) if (platform === 'windows' && environment === 'wxwork') { return true } else { return false } }, // 请求订阅消息 async requestSubscribeMessage() { return new Promise((resolve, reject) => { uni.requestSubscribeMessage({ tmplIds: [this.templateId], success: () => { uni.showToast({ title: "订阅成功", icon: "none" }).then(() => this.updateSubscription()); resolve(); // 授权成功 }, fail: (err) => { console.error('订阅消息请求失败:', err); reject(err); // 授权失败 } }); }); }, // 更新订阅信息 async updateSubscription() { try { const userInfo = uni.getStorageSync('uni-id-pages-userInfo'); const userId = userInfo._id; const nickname = userInfo.nickname; await subscription1.updateSubscriptionCount(userId, nickname, this.templateId); console.log('订阅信息更新成功'); } catch (error) { console.error('更新订阅信息失败:', error); } }, async navigateTofwzx(){ const result = await this.isEnterpriseWeChatPC(); if (result) { // 企业微信PC端直接跳转 uni.navigateTo({ url: `/pages/fwzx/fwzx` }); } else { // 手机端触发订阅消息请求后再跳转 try { await this.requestSubscribeMessage(); // 请求订阅消息 uni.navigateTo({ url: `/pages/fwzx/fwzx` }); // 跳转到目标页面 } catch (err) { console.error('订阅消息授权失败,无法跳转至目标页面:', err); } } },小程序在微信手机端、pc端都可以正常运行,现在在企业微信手机端、pc端都出现错误errMsg: "requestSubscribeMessage:fail can only be invoked by user TAP gesture."
2024-12-12你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企业微信端在安卓手机上扫码后闪退?handleScan() { // #ifndef H5 const that = this; uni.scanCode({ onlyFromCamera: true, success: function (res) { if (that.detail.hardwareType && that.detail.hardwareType === 2) { that.handleGetHardware(res.result); } else { that.$navTo(`./scan?id=${that.id}&qrcode=${res.result}`); } }, }); // #endif // #ifdef H5 this.handleGetQYWX(); // #endif }, async handleGetQYWX() { try { const that = this; const { data } = await getConfig({ url: `${window.location.href}`, }); that.obj.config({ beta: true, // 必须这么写,否则wx.invoke调用形式的jsapi会有问题 // debug: true, appId: data.corp_id, // 必填,企业微信的corpID timestamp: data.timestamp, // 必填,生成签名的时间戳 nonceStr: data.nonceStr, // 必填,生成签名的随机串 signature: data.signature, // 必填,签名,见附录-JS-SDK使用权限签名算法 jsApiList: ['scanQRCode'], //必填,传入需要使用的接口名称 }); // eslint-disable-next-line console.log(2); // eslint-disable-next-line that.obj.ready(function () { // eslint-disable-next-line console.log(4); // eslint-disable-next-line console.log('success', wx); // eslint-disable-next-line that.obj.scanQRCode({ desc: 'scanQRCode desc', needResult: 1, // 默认为0,扫描结果由企业微信处理,1则直接返回扫描结果, scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是条形码(一维码),默认二者都有 success: function (res) { // 回调 let result = res.resultStr; if (that.detail.hardwareType === 2) { that.handleGetHardware(result); } else { that.$navTo(`./scan?id=${that.id}&qrcode=${result}`); } }, error: function (res) { that.$refs.uToast.show({ title: '扫码失败,请重试', type: 'default', }); // if (res.errMsg.indexOf('function_not_exist') > 0) { // alert('版本过低请升级') // } }, }); }); // eslint-disable-next-line that.obj.error(function (res) { // eslint-disable-next-line console.log(3); console.log(res); }); } catch {} },
2024-12-12找该小程序开发
服务号里小程序怎么发布产品和编辑产品?公众号里面提供的服务,添加了相关的小程序,然后小程序入口是哪里进去编辑呢,编辑页面和发布产品,不是官方的小程序
2024-12-11你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企微环境小程序配置homeButton为true会同时显示返回和home按钮?在页面的配置下配置homeButton为true; 企微使用navigateTo API跳转到当前界面,会同时显示返回和home按钮;使用wx.hideHomeButton API会同时隐藏返回和home按钮
2024-12-10你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
WECOM-JSSDK调用getCurExternalContact失败?ww.register注册后再调用ww.getCurExternalContact报fail_no permission[图片]
2024-12-10此类消息目前不予开通长期订阅,请采用其他方式进行通知
政务民生类小程序申请长期订阅消息模板?政务民生类小程序怎么申请长期订阅消息模板。按教程上看是可以申请的。 标题 入驻号最新资讯发布提醒类目 政务服务大厅详细内容发文机构 {{thing1.DATA}}文章标题 {{thing2.DATA}}发文时间 {{time3.DATA}}场景说明 中国贵州入驻号最新资讯发布提醒
2024-12-10场景值列表没有对外的这些都是一些废弃的场景或者不公开的特殊场景,无需关注哈
wx-1123场景值到底是什么东西https://developers.weixin.qq.com/miniprogram/dev/reference/scene-list.html 小程序场景值 wx-1123 描述也没有,文档也都不到,接口只给了这么一个东西,你要是废弃了就不要放出来,放出来你就给描述清楚,不清不楚的算个啥? 而且这个问题21年就有人提了,今天还出现,这都经过3年了是没有人做开发?
2024-12-10