gpt4 book ai didi

angular - 在我的网站中只使用一个组件

转载 作者:太空狗 更新时间:2023-10-29 18:25:47 26 4
gpt4 key购买 nike

我有两个自定义组件:

组件 1

@Component({
selector: 'my-custom-component1',
templateUrl: './my-custom-component1.html',
styleUrls: ['./my-custom-component1.css']
})
export class MyCustomComponent1 {
constructor() {
console.log('myCustomComponent1');
}
}

组件 2

@Component({
selector: 'my-custom-component2',
templateUrl: './my-custom-component2.html',
styleUrls: ['./my-custom-component2.css']
})
export class MyCustomComponent2 {
constructor() {
console.log('myCustomComponent2');
}
}

我在我的根组件中使用 Component1:

import { Component } from '@angular/core';

@Component({
selector: 'app-root',
template: `<my-custom-component1></my-custom-component1>`
})
export class AppComponent {
}

我在一个网站上有几个 html 文件。我想在一个页面中使用这个 Angular 应用程序。

我在 file01.html 中做:

<!doctype html>
<html>
<head>
<title>file01</title>
...
</head>
<body>
...
<app-root>Loading...</app-root>
<script type="text/javascript" src="inline.bundle.js"></script>
<script type="text/javascript" src="polyfills.bundle.js"></script>
<script type="text/javascript" src="styles.bundle.js"></script>
<script type="text/javascript" src="vendor.bundle.js"></script>
<script type="text/javascript" src="main.bundle.js"></script>
</body>
</html>

一切正常,但是......

我想在另一个页面中使用 Component2。我该如何使用它?我一直在尝试这个,但没有成功。

file02.html

<!doctype html>
<html>
<head>
<title>file02</title>
...
</head>
<body>
...
<my-custom-component2></my-custom-component2>
<script type="text/javascript" src="inline.bundle.js"></script>
<script type="text/javascript" src="polyfills.bundle.js"></script>
<script type="text/javascript" src="styles.bundle.js"></script>
<script type="text/javascript" src="vendor.bundle.js"></script>
<script type="text/javascript" src="main.bundle.js"></script>
</body>
</html>

最佳答案

您可以省略引导选项并自己在根模块上实现 ngDoBootstrap() 方法。为了有条件地引导组件,只需在调用 appRef.bootstrap(SomeComponent); 之前执行 querySelector 以检查组件是否已在页面上。

所以你的模块看起来像:

@NgModule({
imports: [ BrowserModule ],
declarations: [
AppRootComponent, // `app-root` selector
MyCustomComponent1,
MyCustomComponent2 // `my-custom-component2` selector
],
entryComponents: [
AppRootComponent, // this is required because we need to have
MyCustomComponent2 // host factory for bootstrapped components
]
})
export class AppModule {
ngDoBootstrap(appRef: ApplicationRef) {
if(document.querySelector('app-root')) {
appRef.bootstrap(AppRootComponent);
}
if(document.querySelector('my-custom-component2')) {
appRef.bootstrap(MyCustomComponent2);
}
}
}

Plunker Example

要查看它是如何工作的,只需从 index.html 中删除 app-root 标签并添加 my-custom-component2

关于angular - 在我的网站中只使用一个组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42299635/

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