【错误信息】
1. not node js file system!path:/saaa_config.json
2. backgroundfetch privacy fail
3. no such file or directory, access 'wxfile://usr/miniprogramLog/log2'
4. NetworkTask costTime too long: 82787ms(网络请求82秒超时!)
【影响】
- 所有小程序在安卓微信8.0.64版本崩溃
- 网络请求完全阻塞(82秒超时)
- 文件系统无法使用
- 底层WeixinJSCore频繁报错

// app.js - 完全干净的代码
App({
onLaunch() {
console.log('小程序启动测试');
// 测试1: 基本API调用
wx.getSystemInfo({
success: (res) => {
console.log('系统信息:', res);
},
fail: (err) => {
console.error('获取系统信息失败:', err);
}
});
// 测试2: 网络请求(会触发82秒超时)
setTimeout(() => {
wx.request({
url: 'https://httpbin.org/get',
success: (res) => {
console.log('网络请求成功');
},
fail: (err) => {
console.error('网络请求失败:', err);
}
});
}, 1000);
}
}); 进入小程序首页就报错,上传日志微信号wj516690046 操作时间12:32,有其他安卓手机用户反馈,我用苹果手机访问正常。
这个问题搞得我很恼火,原来是安卓微信的问题