项目场景: vue前端项目 问题描述 控制台报错: Failed to launch ‘xxx’ because the scheme does not have a registered handler. 原因分析: 原因:请求没有协议http:// 或者是https://,应该把协议头加上 解决方案: 在你的的请求地址前面加上协议,以下为栗子 window.location.href="http://localhost:8080/xxxx"