ユーザ用ツール

サイト用ツール


サイドバー

angular:angular入門_はじめてのアプリ

以前のリビジョンの文書です


Angular入門_はじめてのアプリ

*ngForディレクティブ

<div *ngFor="let product of products">   // productsリストをproductという変数に当てはめる
  <h3>
    {{product.name}}
  </h3>
</div>

補間構文 {{ }}

<div *ngFor="let product of products">   // productsリストをproductという変数に当てはめる
  <h3>
    {{product.name}} // プロパティの値をテキストとしてレンダリングします
  </h3>
</div>

ロパティバインディング [] 構文

[]でhtmnlタグのプロパティをバインディングできる

<h2>Products</h2>
<div *ngFor="let product of products">
  <h3>
    <a [title]="product.name + ' details'"> //"~"の部分はバインディングしている。
                                            // 文字列だけなら<a [title]="'details'"> となる
    {{product.name}}
    </a>
  </h3>
</div>

*ngIfディレクティブ

  <p *ngIf="product.description">
    Description:{{product.description}}
  </p>

()イベントバインディング

  <button (click)="share()">
    share
  </button>

コンポーネントは3つの要素

* コンポーネントクラス product-list.component.ts
* HTMLテンプレート product-list.component.html
* コンポーネント固有スタイル product-list.component.css

コンポーネントのツリー

angular/angular入門_はじめてのアプリ.1573649374.txt.gz · 最終更新: 2019/11/13 21:49 by ips