- 当使用skyline ,this.selectComponent 出现和预期不一致的结果?
在 这个版本 中 出现 WeChatLib: 3.15.2 (2026.4.14 14:23:26) 渲染 使用 skyline 对于使用了 wx://component-export 的 自定义组件 this.selectComponent 的返回值 变成了 componentCalller[图片] 预期应该返回 开发者写的export 对象
04-16 - 小程序后台 无法修改消息推送地址
[图片] https://mp.weixin.qq.com/wxopen/devprofile?action=get_callback&token=2134363843&lang=zh_CN 可以稳定复现
04-08 - wx.startLocationUpdateBackground 报错?
[图片] 在红米k80出现 wx.startLocationUpdateBackground, 既不触发success,也不触发fail 的情况,看上去是权限设置的问题, 开发者工具最新,微信也是最新 基础库3.9.3 [图片]
2025-09-09 - skyline 中 em 单位没法使用吗?
https://developers.weixin.qq.com/s/89AYPJmw7cTv 官方能不能给个能使用的 css单位列表
2024-08-26 - skyline input 无法触发focus事件
使用webview 没有问题,skyline 环境下复现
2024-08-26 - PC端企业微信小程序怎么debug?
[图片]
2021-12-09 - App.onError无法捕获async函数的异常?
[图片] 我想给一个代码示例,结果代码片段又报不支持这个async 语法, 想监控线上小程序的报错,但我们的小程序都是用的async/await 写的 还有一个问题,如果一个小程序在PC端企业微信页面报错,怎么debug?
2021-12-08 - 开发者工具中的typescript装饰器特性支持是不是有问题?
[图片] [图片] 我已经定义了 "experimentalDecorators": true, function f() { console.log("f(): evaluated"); return function (target, propertyKey: string, descriptor: PropertyDescriptor) { console.log("f(): called"); } } function g() { console.log("g(): evaluated"); return function (target, propertyKey: string, descriptor: PropertyDescriptor) { console.log("g(): called"); } } class C { @f() @g() method() {} } let a = new C() a.method()
2021-11-22 - 想查一下小程序信息安全风险具体是哪部分?今天被警告了
[图片] wx appid: wx7b0f660b9058a98a
2020-03-03 - 自动化测试input 框输入不了?
formpage = await miniProgram.currentPage() input = await formpage.$$('input') // await input[0].tap() await input[0].trigger('focus') await input[0].trigger('input',{value: "dff"}) picker = await formpage.$$('picker') await picker[0].trigger('change',{value: 1}) // await input[0].trigger('blur') // console.log(await input[0].value()) expect(await input[0].value()).toBe('') expect(await picker[0].value()).toBe(1) 这个测试是通过的,input框能触发input事件,但value没变
2019-11-15