- 小程序webview中长按二维码无法打开小程序
- 当前 Bug 的表现(可附上截图) [图片] 前提条件:红圈中的二维码是宠咖秀小程序码,能跳转到宠咖秀某个指定页面 - 预期表现 - 复现路径 在宠咖秀小程序内打开此webview页,不点击放大二维码图片的情况下,长按识别二维码,无法跳转到指定页面。BUG只限于iOS系统。Android无异常。 - 提供一个最简复现 Demo
2018-12-03 - module.exports = false 无法正常导出
``` // a.js module.exports = 0 ``` ``` //b.js const a = require('./a.js') console.log(a) // === undefined ``` 别老写新业务了,赶紧修修吧
2018-11-16 - require 函数缺陷
- 当前 Bug 的表现(可附上截图) └── wxApp ├── templates ├── utils │ ├── index.js └── app.js 如果在app.js中采用 require('./utils') 的写法,则报错无法找到模块 utils,必须写 require('./utils/index') - 预期表现 require('./utils') 能默认引入 utils/index.js 文件内导出的模块 - 复现路径 - 提供一个最简复现 Demo
2018-10-12 - 小程序开发工具CLI预览报错
- 当前 Bug 的表现(可附上截图) Initializing... idePortFile: /Users/yyx990803/Library/Application Support/微信web开发者工具/Default/.ide IDE server has started, listening on http://127.0.0.1:63249 initialization finished preparing preview... StatusCodeError: 400 - "{\"code\":40000,\"error\":\"错误 ReferenceError: path is not defined\"}" - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2018-09-04