I am currently tackling a challenge with a project that utilizes Angular 2. The client has requested that the numbers entered in the input tags be displayed as strings with commas and decimals. However, since the data is being sent to and retrieved from a database in numeric form, changing it to a string could lead to complications with backend calculations. Therefore, using angular pipes may not be a viable solution as they would convert the number to a string. Additionally, I am dealing with a large volume of data, making it impractical to individually convert each number. I am seeking a more universal solution to address this issue. Any advice on how to achieve this would be highly appreciated.