gpt4 book ai didi

angular - 选择器 "my-app"不匹配任何元素

转载 作者:太空狗 更新时间:2023-10-29 16:45:37 28 4
gpt4 key购买 nike

问题是当我运行我的应用程序时,它工作正常。但是当我刷新它时,大多数时候我都低于消息。

The selector "my-app" did not match any elements

但奇怪的是,当我多次刷新我的应用程序时,它也能正常工作。

所以最终我的应用程序出现了奇怪的行为,无法解决这个问题。
有时有效有时无效...

有什么建议,想不出代码???

注意:我还没有复杂的结构或组件,但实现很简单。

最佳答案

这发生在我身上是因为我在 head 标签中导入我的代码,所以它可能在 DOM 准备好之前运行并尝试引导。

您可以将脚本移动到 body 标记的底部,或者将 Bootstrap 代码放在事件监听器中:

document.addEventListener("DOMContentLoaded", function(event) {
bootstrap(AppComponent);
});

或:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example app</title>
</head>
<body>
<my-app></my-app>
</body>
<script src="main.js" charset="utf-8"></script>
</html>

关于angular - 选择器 "my-app"不匹配任何元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35644123/

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