私はng new hello
とng build
と新しい角度2プロジェクトを作成しました。その後、ng serve
を使って、私はそれがうまく動作することを確認した 'アプリの作品!'。新たに追加された角度2コンポーネントは機能しません。それは正しくapp.module.jsに追加されました
次に、ng g component hello
という新しいコンポーネントを追加しました。次は自動的に変更されるapp.module.ts
です。
...
import { AppComponent } from './app.component';
import { HelloComponent } from './hello/hello.component';//<--here
@NgModule({
declarations: [
AppComponent,
HelloComponent//<--here
],
...
hello.component.ts
のコンポーネント部分は次のとおりです。 hello.component.html
にはデフォルトのhtmlソースがあります。
@Component({
selector: 'hello',
templateUrl: './hello.component.html',
styleUrls: ['./hello.component.css']
})
は、その後、私は最終的にindex.html
で<hello>Loading!!!</hello>
を加え、再びng serve
でプロジェクトを実行しましたが、<hello>
タグのみを示し、「ロードを!!!」。
紛失しているものはありますか?
を使用することができますか?
app.component.html
にそれを追加通常、バグに関する有用な報告があります。 – Reyraa