gpt4 book ai didi

angular - 为什么 angular 找不到 app.js 文件并抛出 404 错误?

转载 作者:行者123 更新时间:2023-12-04 12:42:34 25 4
gpt4 key购买 nike

我正在创建小型 Angular 应用程序,其中我已将 app.js 放在我的应用程序文件夹中,其中 index.html 也在那里。当我运行 'ng serve' 命令然后 index.html 正在加载但在 chrome 上执行 F12 时,它显示以下错误:
获取 http://localhost:4200/app.js net::ERR_ABORTED 404(未找到)

我的 index.html 文件:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GridDemo</title>

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="app.js"></script>
</head>
<body>
<app-root></app-root>
</body>
</html>

即使添加 <base href="/"></base>没有任何影响。

最佳答案

更具体地说,@David 所说的 js 文件需要包含在 angular.json 文件中定义为 Assets 的文件夹中。如果您使用 cli 创建了应用程序,则默认情况下应该以这种方式设置“ Assets ”文件夹。所以,我希望是这样的: <script src="assets/js/app.js"></script>
angular.json 中的确切属性是 project.${app-name}.architect.build.options.assets 并接受一个字符串数组。

但至于@Harini P 所说的,建议不要在常规 angular 文件结构之外进行任何 dom 更改。

关于angular - 为什么 angular 找不到 app.js 文件并抛出 404 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56585794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com