1.使用的依赖:
"file-box": "^1.5.5", "qrcode": "^1.5.3", "install": "^0.13.0", "@grpc/grpc-js": "^1.10.1", "@juzi/wechaty": "^1.0.65", "@juzi/wechaty-puppet": "^1.0.61", "@juzi/wechaty-puppet-service": "^1.0.69", "wechaty-puppet-official-account": "^1.10.7", "wechaty-puppet-padlocal": "^1.20.1", "wechaty": "^1.20.2", "wechaty-puppet-wechat4u": "^1.14.14" 其中主要问题是在 "@grpc/grpc-js": "^1.10.1", 这个包里面
2.解决方法
修改 node_modules/@grpc/grpc-js/build/src/load-balancer-pick-first.js的411行
从
const rawAddressList = [].concat(...endpointList.map(endpoint => endpoint.addresses));
改为
const rawAddressList = endpointList;