1. ホーム
  2. angular-cli

[解決済み] Angular 4でCLIを使用して新しいコンポーネントを作成する方法

2022-03-01 05:48:13

質問

Angular 2 では、次のように使用します。

ng g c componentname

しかし、これはAngular 4でサポートされていません。 ということで、手動で作成したのですが、モジュールではないというエラーが表示されました。

どうすればいいですか?

開発サーバーを経由してAngularプロジェクトを生成して提供する-。

まず、プロジェクトディレクトリに移動して、次のように入力します。

ng new my-app
cd my-app
ng generate component User (or) ng g c user 
ng serve

ここで " D:\Angularmy-app> 「は私のAngularアプリケーションのプロジェクトディレクトリで、" ユーザー 「はコンポーネントの名前です。

コモンズは以下のようになります。

D:\Angular\my-app>ng g component User
  create src/app/user/user.component.html (23 bytes)
  create src/app/user/user.component.spec.ts (614 bytes)
  create src/app/user/user.component.ts (261 bytes)
  create src/app/user/user.component.css (0 bytes)
  update src/app/app.module.ts (586 bytes)