1.找出报错文件地址 2.定位至const os = require('os'); 3.添加内容os.hostname = () => 'localhost'; 4.保存,重试
针对你提出的 node:os:68 throw new err_system_error(ctx); ^ systemerror [err_system_error] 错误,以下是一些分析和解决步骤: 错误分析: ERR_SYSTEM_ERROR 是Node.js 在执行底层系统调用时遇到错误时抛出的错误。 根据错误信息,uv_os_gethostname returned ENOSYS 表明uv_os_gethostname 这个系统调用在...