What is transforming data using pipes in angular?
Loading
What is transforming data using pipes in angular?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Sep 22, 2022, 7:45 AM
There are built in pipes available like uppercase, date etc but you can also create custom pipes to transorm the data .
For example if you want display Mr/Ms based on the gender of user then
Vishal JoshiPosted Sep 22, 2022, 5:51 AM
Angular invokes the transform method with the value of a binding as the first argument, and any parameters as the second argument in list form.
Few examples of transforming data using angular.
You can get more details on the official site of angular below:
https://angular.io/guide/pipes
Vishal YelvePosted Sep 21, 2022, 1:09 PM
Hi Naresh,
Please refer to below links
https://angular.io/guide/pipes
https://medium.com/@tanuagrawal/pipes-in-angular-77b75097b095
https://www.simplilearn.com/tutorials/angular-tutorial/angular-pipes
Rajanikant HawaldarPosted Sep 21, 2022, 11:55 AM
Please go through below articles,
https://www.c-sharpcorner.com/learn/angular-8-in-10-days/angular-8-pipes-day-5
https://www.c-sharpcorner.com/article/overview-of-angular-pipes/
https://www.c-sharpcorner.com/article/introduction-to-angular-pipes/