PrefacePIPE, translated as pipeline. Angular pipes are a way to write transformations of display values that can be declared in HTML components. Angular pipes were previously called filters in AngularJS and are now called pipes since Angular 2. A pipeline takes data as input and transforms it into the desired output. Angular Pipes takes integers, strings, arrays, and dates as input separated by | and then converts them into the required format and displays them in the browser. In interpolation expressions, you can define pipes and use them as appropriate. There are many types of pipes that you can use in an Angular application. Built-in pipeline
How to useUppercase conversion <div> <p ngNonBindable>{{ 'Angular' | uppercase }}</p> <p>{{ 'Angular' | uppercase }}</p> <!-- Output: ANGULAR --> </div> Date formatting <div> <p ngNonBindable>{{ today | date: 'shortTime' }}</p> <p>{{ today | date: 'shortTime' }}</p> <!-- Output: Based on the current time, output format: 10:40 AM --> </div> Numeric formatting <div> <p ngNonBindable>{{ 3.14159265 | number: '1.4-4' }}</p> <p>{{ 3.14159265 | number: '1.4-4' }}</p> <!-- Output: 3.1416 --> </div> JavaScript Object Serialization <div> <p ngNonBindable>{{ { name: 'semlinker' } | json }}</p> <p>{{ { name: 'semlinker' } | json }}</p> <!-- Output: { "name": "semlinker" } --> </div> Pipeline parameters A pipeline can accept any number of parameters by appending : and the parameter value after the pipeline name. For example, number: '1.4-4'. If you need to pass multiple parameters, separate them with colons. The specific examples are as follows: <div> <p ngNonBindable>{{ 'semlinker' | slice:0:3 }}</p> <p>{{ 'semlinker' | slice:0:3 }}</p> <!-- Output: sem --> </div> Pipeline Chain <div> <p ngNonBindable>{{ 'semlinker' | slice:0:3 | uppercase }}</p> <p>{{ 'semlinker' | slice:0:3 | uppercase }}</p> </div> Custom pipelineThe following uses the pipeline used in previous projects as an example to explain the steps of customizing the pipeline:
definition import { Pipe, PipeTransform } from "@angular/core"; @Pipe({ name: "formatError" }) export class FormatErrorPipe implements PipeTransform { constructor() {} transform(value: any, module: string) { if (value.code) { return value.desc; } else { return value.message; } } } use <div *ngIf="errorMessage"> <div class="message-box error mb-16" [@animate]="{value:'*',params:{opacity:'0',duration:'200ms'}}"> {{errorMessage.error | formatError:"auth"}} </div> </div> SummarizeThis is the end of this article about Angular pipe PIPE. For more relevant Angular pipe PIPE content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Basic JSON Operation Guide in MySQL 5.7
The main differences are as follows: 1. MySQL use...
1. Search mysql in the browser to download and in...
Definition of Generics // Requirement 1: Generics...
Heart Attributes opacity: .999 creates a stacking...
This article mainly explains how to deploy Elasti...
At the end of last year, I replaced the opensuse ...
Table of contents 01-Event Bubbling 1.1- Introduc...
Document mode has the following two functions: 1. ...
<br />Structure and hierarchy reduce complex...
Recently, when I was learning how to use webpack,...
1. Virtual Machine Side 1. Find the mysql configu...
Table of contents 1. Stop MySQL Server first 2. U...
Table of contents Multi-table join query Inner Jo...
Download address: https://dev.mysql.com/downloads...
Table of contents 1. Object change detection 2. Q...