は角2角度2ブートストラップ
index.htmlを
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<app-root></app-root>
</body>
</html>
main.ts
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule)
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
クラシック最初の簡単な例を考えてみます
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent { }
私の質問は、セレクタアプリルートを見つけるために、検索する場所、ルートモジュールが知っているどのようにのですか?それはデフォルトでindex.html
に行きますか、どこに行くか定義されていますか? index.htmlの代わりにindex1.htmlがあれば、アプリはうまくいかないでしょう。なぜですか?