我有以下问题。我有一个使用 Angular 6 和路由系统构建的应用程序。我想创建一个包含此应用程序的 Web 组件,并能够将其用作不同 Web 应用程序的一部分。我已遵循本教程,并根据我的需要对其进行了修改:https ://codingthesmartway.com/angular-elements-a-practical-introduction-to-web-components-with-angular-6/
结果是屏幕上没有呈现任何内容,现在浏览器中存在错误Error: The selector "app-root" did not match any elements
。
在浏览器源文件上,我可以确认包含我的 Web 组件的 js 文件已成功加载。
这是我所拥有的:
在 app.module.ts
@NgModule({
declarations: [
AppComponent,
VideoRoomComponent,
DashboardComponent,
StreamComponent,
DialogNicknameComponent,
ChatComponent,
DialogExtensionComponent,
],
imports: [
FormsModule,
ReactiveFormsModule,
BrowserModule,
BrowserAnimationsModule,
MatButtonModule,
MatCardModule,
MatToolbarModule,
MatIconModule,
MatInputModule,
MatFormFieldModule,
MatDialogModule,
MatTooltipModule,
AppRoutingModule,
HttpClientModule,
],
entryComponents: [
AppComponent,
DialogNicknameComponent,
DialogExtensionComponent,
],
providers: [{provide: APP_BASE_HREF, useValue: '/'}, MyService],
bootstrap: [AppComponent],
})
export class AppModule {
constructor(private injector: Injector) {}
ngDoBootstrap() {
const el = createCustomElement(AppComponent, { injector: this.injector });
customElements.define('myElement', el);
}
}
在这里,我的 index.html 来测试自定义元素
<!DOCTYPE html>
<html>
<head>
<title>My webpage!</title>
<script>
var global = global || window;
</script>
<script type="text/javascript" src="myElement.js"></script>
</head>
<body>
<h1>Hello, World!</h1>
<myElement></myElement>
</body>
</html>
关于这个问题有什么建议吗?
提前致谢