无法加载资源:Angular 5

时间:2019-01-16 05:34:23

标签: angular

我已经从Angular CLI创建了一个项目,并开始使用“ ng serve”命令运行该应用程序。它显示“ Web Pack:已成功编译”,但无法在Web浏览器中使用。

发现诸如“ main.bundle.js,polyfills.bundle.js和样式...”之类的所有文件的控制台错误,如“无法加载资源:服务器以状态404(未找到)响应”。

enter image description here

我了解由于丢失文件而导致抛出错误。即使编译成功,我也不明白为什么会出错。

使用Node v10.13.0

请任何专家输入吗?

2 个答案:

答案 0 :(得分:0)

卸载node_modules或注释node_modules文件夹并执行

 Executing BufRead Auto commands for "*.rs"
autocommand setf rust
line 0: setf rust
Executing BufEnter Auto commands for "*"
autocommand sil call s:LocalBrowse(expand("<amatch>"))
line 0: sil call s:LocalBrowse(expand("<amatch>"))

看起来您的node_modules与Angular 5版本不兼容。

然后运行,

npm install

答案 1 :(得分:0)

似乎与缓存有关。运行:

npm cache clean or npm cache verify.

这为我解决了。