微信开发者工具
不管是右键-格式化代码 还是shift + alt + F 都失效,就连鼠标点击编辑-格式化代码都没反应
APP-SERVICE-SDK:Page "plugin://wx69b7451feb427f0e/info-regist" is not found(env: macOS,mp,2.01.2510250; lib: 3.12.1) Error: Framework inner error: unknown codeSpace ID bb-plugin/info-reg at be.parseProtocol (WAServiceMainContext.js?t=wechat&v=3.12.1:1) at Lr.isInnerPage (WAServiceMainContext.js?t=wechat&v=3.12.1:1) at Xce (WAServiceMainContext.js?t=wechat&v=3.12.1:1) at WAServiceMainContext.js?t=wechat&v=3.12.1:1 at Generator.next (<anonymous>) at a (WAServiceMainContext.js?t=wechat&v=3.12.1:1) at s (WAServiceMainContext.js?t=wechat&v=3.12.1:1) at WAServiceMainContext.js?t=wechat&v=3.12.1:1 at new Promise (<anonymous>) at WAServiceMainContext.js?t=wechat&v=3.12.1:1(env: macOS,mp,2.01.2510250; lib: 3.12.1)
如题,完全找不到版本管理在哪,无法设置远程仓库 [图片]
[图片][图片]
开发版本号2.01.2510250 win32-64
2.01.2512122 版本 windows11下 无法搜索
[图片] [图片] Error: module 'miniprogram_npm/safer-buffer/buffer.js' is not defined, require args is 'buffer' at V (VM1085 WASubContext.js:1) at r (VM1085 WASubContext.js:1) at __REQUIRE__ (index.js:20) at safer.js:77 at Object.func (safer.js:5) at __REQUIRE__ (index.js:40) at safer.js:77 at safer.js:77 at VM1085 WASubContext.js:1 at p.runWith (VM1085 WASubContext.js:1)(env: Windows,mp,1.06.2504010; lib: 3.3.5) [图片] [图片] node_modules 下 safer-buffer中 确实没有buffer.js 怎么弄? [图片]
https://developers.weixin.qq.com/miniprogram/dev/devtools/nightly.html 找不到 Android 证书签名管理功能 [图片]
你好,我在使用“卓易通”应用时,完全无法登录,特此反馈。 1. 问题描述: 核心矛盾:应用在登录时,引导用户进行“微信授权登录”,但点击按钮后,界面却明确提示 “卓易通内暂不支持微信登录”。这形成了一个无法跳出的逻辑死循环。尝试过的操作:我曾尝试返回寻找其他登录入口(如邮箱密码登录),但应用界面并未提供任何切换或返回选项,导致我被卡在当前授权页面,无法进行任何其他操作。因此,无论是微信登录还是QQ邮箱登录,实际上都无法完成。3. 我的设备和环境: 手机系统:华为纯血鸿蒙系统(HarmonyOS NEXT)。应用名称:卓易通。账号信息:尝试登录的邮箱是 [代码]315693731@qq.com[代码]。4. 我的诉求与疑问: 正确的登录路径是什么?我该如何绕过这个无效的“微信授权”界面?此问题是否为纯血鸿蒙系统下的特定适配问题?请官方检查并修复此登录流程的逻辑错误,或在明显位置提供其他登录方法(如账号密码登录)的入口。
微信开发者工具stable1.06.2504060,win11
传感器中已添加经纬度等信息,demo中确认jssdk有getLocation权限,不论打开本地测试环境还是线上正式环境,都会报getLocationf:fail timeout。使用代码如下: const initWxSDKAndGo = async (path) => { if (!isWeixin) { alert("请在微信中打开此页面") return } const url = window.location.href.split('#')[0] console.log("签名使用的URL:", url) try { const res = await getSignature({ url }) console.log("签名接口返回:", res) wx.config({ debug: false, appId: res.appId, timestamp: res.timestamp, nonceStr: res.nonceStr, signature: res.signature, jsApiList: ['getLocation'] }) wx.ready(() => { console.log("微信SDK准备就绪,开始获取位置") wx.getLocation({ type: 'gcj02', success: (loc) => { console.log("微信位置获取成功:", loc) const position = { latitude: loc.latitude, longitude: loc.longitude, timestamp: Date.now() } localStorage.setItem('userLocation', JSON.stringify(position)) ElMessage.success('已保存用户位置信息:', localStorage.getItem('userLocation')) console.log('已保存用户位置信息', localStorage.getItem('userLocation')) router.push({ path, query: { lat: position.latitude, lng: position.longitude, t: Date.now() } }) sendUrlToMiniProgram(path) }, fail: (err) => { console.error('定位失败:', err) router.push({ path }) sendUrlToMiniProgram(path) } }) }) wx.error(err => { console.error('微信SDK错误:', err) alert('微信功能初始化失败,请刷新页面重试') }) } catch (error) { console.error('请求签名失败:', error) alert('位置服务初始化中,正在进入页面...') router.push({ path })} sendUrlToMiniProgram(path) }
版本:稳定版 Stable Build (2.01.2510250)设备:MacBook Pro Apple M3 Pro 系统版本:Tahone 26.1 [图片]
订单管理-订单信息录入 是什么? 如何配置? 里面的路径页面需要有什么内容?
[图片]
[图片]
在服务器可以通过域名和ip正常访问到接口,开发者工具和线上体验版无法访问[图片]
安装的最新稳定版 wechat_devtools_2.01.2510250_win32_x64 [图片]
现在需求是:微信小程序和企业微信小程序联合调试。企业微信小程序发送小程序卡片消息给客户微信,客户点击小程序卡片消息后跳转的对应的微信小程序页面。现在企业微信小程序有多场景开发调试,可以用开发版,但客户点击小程序卡片消息后跳转的对应的微信小程序只能跳转到正式版,要怎样设置微信小程序才能同样跳到开发版。
wx.getLocation 地理接口一直在审核中,已经好几天了,急等使用,小程序ID:wxf897d34664430b57,需要怎么解决,尽快审核?
mac 版本 2.01.2512122 darwin-arm64
小程序助手
帮助小程序相关成员在手机端更方便、及时地管理小程序
小程序助手
扫码体验