天天看點

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