localhost/:1 Failed to load resource: the server responded with a status of 404 (Not Found)怎么解决
时间: 2024-01-02 13:23:06 浏览: 129
使用Socket类接收和发送数据
4星 · 用户满意度95%
解决"Failed to load resource: the server responded with a status of 404 (Not Found)"错误的方法有两种:
方案一:修改配置文件
找到config文件夹下的index.js文件,打开并找到assetsPublicPath字段,将其值修改为"./",保存文件并重新运行程序。
方案二:检查资源文件是否存在
该错误表示页面试图加载某个资源文件(如CSS、JS文件等),但服务器返回了404错误状态码,意味着该资源未被找到或不存在。因此,你需要检查资源文件是否存在于指定的路径中。如果资源文件确实不存在,你可以尝试重新上传或重新配置资源文件路径。
阅读全文