天天看点

Failed to load resource: the server responded with a status of 404 (Not Found) - Vue

通过服务器打开本地文件时, 练习Vue时无法加载js文件, 控制台报错信息 : ​

​Failed to load resource: the server responded with a status of 404 (Not Found)​

​ … 意思大概为无法加载资源.

原因分析

Failed to load resource: the server responded with a status of 404 (Not Found) - Vue

这是服务器启动资源的路径, 然而看看本地所调用的js文件路径是?

Failed to load resource: the server responded with a status of 404 (Not Found) - Vue

可想而知, 可以加载的资源为vue_test文件夹下的, 然而你的js路径已经脱离了vue_test, 已经到了它的上层目录, 因此无法加载资源.

解决方法

将src的引用路径修改一下就可以解决

Failed to load resource: the server responded with a status of 404 (Not Found) - Vue