Angular の
パイプ は、基になるデータを変更せずにテンプレート内のデータを変換するために使用される単純な関数です。パイプは値を受け取り、それを処理し、フォーマットされた出力または変換された出力を返します。これらは、日付、数値、文字列、さらには配列やオブジェクトの書式設定にもよく使用されます。
基礎となるデータ モデルを変更せずに、ビュー内で直接、データをより読みやすい形式または関連性の高い形式で書式設定して表示できます。
パイプを使用すると、コードをクリーンと読み取り可能に保つのに役立ちます。テンプレートやコンポーネントに複雑なロジックを記述する代わりに、そのロジックを パイプ にカプセル化して、アプリケーションのさまざまな部分で再利用できます。
たとえば、ユーザーが記事の公開日を確認できるブログ プラットフォームを開発しているとします。日付は、生の形式「2024–08–31T14:48:00.000Z」ではなく、「2024 年 8 月 31 日」などの使いやすい形式で表示する必要があります。 pipes を使用すると、コンポーネント内の日付を手動でフォーマットしてコードを煩雑にして読みやすさを低下させる代わりに、テンプレート内で Angular の組み込み DatePipe を使用できます。
<p>Published on: {{ article.publishDate | date:'longDate' }}</p>
パイプを適用するには、上記のコード例に示すように、テンプレート式内で pipe operator (|) を使用します。
Angular には、一般的なタスク (DatePipe、UpperCasePipe、LowerCasePipe、CurrencyPipe、AsyncPipe、JsonPipe、 など) をカバーするいくつかの組み込みパイプが付属しています。これらの使用方法を知ることで、コードをよりクリーンかつ効率的にすることができます。
例:
<pre class="brush:php;toolbar:false">{{ user | json }}
Price: {{ product.price | currency:'USD' }}
{{ user.name | uppercase }}
多くの Angular パイプ は、動作をカスタマイズするためのパラメーターを受け取ります。
パラメータを指定するには、パイプ名の後にコロン (:) とパラメータ値
を続けます。一部の パイプ は、追加のコロンで区切られた複数のパラメータを受け入れます。
パラメータは、オプションまたは必須にすることができます。通貨をフォーマットし、パラメータとして通貨タイプを指定する必要があるカスタム パイプがあるとします。このパラメータが指定されていない場合、パイプは値を正しくフォーマットできない可能性があります。
<p>The product price is {{ price | customCurrency:'USD' }}</p>
1.パラメータ付きの DatePipe
<p>Published on: {{ article.publishDate | date:'MMMM d, y, h:mm:ss a' }}</p>
これにより、日付が「2024 年 8 月 31 日、午後 2:48:00」としてフォーマットされます。
2.パラメータ付き CurrencyPipe
<p>Price: {{ product.price | currency:'EUR':'symbol-narrow':'1.0-0' }}</p>
これにより、価格が「€1,235」としてフォーマットされます (小数点以下は四捨五入されます)。
複数のパイプをチェーンして複雑な変換を実現できます。
<p>{{ article.content | slice:0:100 | uppercase }}</p>
これにより、article.content の最初の 100 文字がスライスされ、大文字に変換されます。
場合によっては、組み込みパイプが特定のニーズを満たさない場合があり、特定のロジックを処理するためにカスタム パイプを作成する必要があります。その方法は次のとおりです。
例:
次の例では、「こんにちは、アリス!」のような挨拶を名前に追加するパイプを作成します
次のコマンドを実行して新しいパイプを生成します:
ng generate pipe greet
次に、src/app ディレクトリにあるgreet.pipe.ts ファイルを変更して、パイプ ロジックを含めましょう。
import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'greet', // This is the name you'll use in the template standalone: true, }) export class GreetPipe implements PipeTransform { transform(value: string): string { return `Hello, ${value}!`; // This is the transformation logic } }
パイプの準備ができたら、それをテンプレートで使用できます。
<p>{{ 'Alice' | greet }}</p>
次に、挨拶をカスタマイズできるようにして、「こんにちは、アリス!」と言うことができるようにします。または「ようこそ、アリス!」パイプに何を渡すかによって異なります。
import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'greet', // Same pipe name as before standalone: true, }) export class GreetPipe implements PipeTransform { transform(value: string, greeting: string = 'Hello'): string { return `${greeting}, ${value}!`; // Now it uses the greeting passed in } }
transform メソッドには 2 番目のパラメーター、greeting が追加されました。挨拶が指定されていない場合は、デフォルトで「Hello」が使用されます。
テンプレート内の挨拶をカスタマイズできるようになりました。
<p>{{ 'Alice' | greet:'Hi' }}</p> <p>{{ 'Bob' | greet:'Welcome' }}</p>
1.ピュアパイプ
デフォルトでは、すべての Angular パイプは純粋です。 純粋なパイプ は、入力データ (数値や文字列など) またはオブジェクトへの参照 (配列や日付など) が変更された場合にのみ呼び出されます。これにより、パイプが不必要に実行されなくなるため、純粋なパイプが効率的かつ高パフォーマンスになります。
ただし、項目の配列など、データがより複雑な場合、配列への参照が変更されていないため、Angular は配列内の変更 (新しい項目の追加など) に気付かない可能性があります。
不要な再レンダリングを避け、パフォーマンスを維持するために、必要な場合を除き、パイプを純粋に保ってください。
例:
@Pipe({ name: "onSale", standalone: true, pure: true, }) export class OnSalePipe implements PipeTransform { transform(items: Item[]): Item[] { return items.filter((item) => item.isOnSale); } }
テンプレート内:
<ul> <li *ngFor="let item of (items | onSale)"> {{ item.name }} - {{ item.price | formatPrice }} </li> </ul>
If you add a new item to the items array that’s on sale, you might expect it to show up in the list. But if you simply push the new item into the array, the list might not update because the array reference hasn’t changed.
An impure pipe, on the other hand, is called every time Angular performs a change detection cycle. However, because they run so often, they can slow down your app.
Example:
@Pipe({ name: "onSaleImpure", standalone: true, pure: false, }) export class OnSaleImpurePipe implements PipeTransform { transform(items: Item[]): Item[] { return items.filter((item) => item.isOnSale); } }
In your template:
<ul> <li *ngFor="let item of (items | onSaleImpure)"> {{ item.name }} - {{ item.price | formatPrice }} </li> </ul>
Now, when you add a new item, the pipe will notice the change and update the list.
Keep Pipes Simple. Avoid Heavy Computations in Pipes
Name Pipes Clearly and Descriptively
Keep Pipes Focused on a Single Responsibility
Avoid Impure Pipes When Possible
Test Custom Pipes Thoroughly
Angular pipes streamline data transformation tasks, making your code more modular, reusable, and maintainable. They help to enforce consistency across the application and improve the readability of your templates, which is crucial for developing scalable and maintainable applications.
以上がAngular Pipes: 包括的なガイドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。