gpt4 book ai didi

angular - 升级到 Angular 8 后为 "Error: No base href set."

转载 作者:行者123 更新时间:2023-12-03 00:40:52 26 4
gpt4 key购买 nike

完成从 Angular 5.x 到 8.0.1 的更新后,我的应用程序可以编译,但在运行时出现以下错误(使用 ngserve):

Error: No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.

我看过其他帖子,例如:Angular 2 router no base href set ,但是,我的应用程序中已经包含 HTML 基本元素。我的index.html如下:

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

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

我可以通过添加以下内容来解决问题:

{
provide: APP_BASE_HREF,
useValue: '/'
}

到我的app.modules.ts,但我更感兴趣的是理解为什么现在需要这个,当使用ng new创建的简单应用程序无需该提供商。

最佳答案

通过添加 body 元素确保 index.html 是有效的 HTML 文件,您可以在其中插入 Angular 根组件:

<html lang="en">
<head>
<base href="/">
...
</head>
<body>
<app-root></app-root>
</body>
</html>

关于angular - 升级到 Angular 8 后为 "Error: No base href set.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56654218/

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