英文:
Remove Decimal Pipe while downloading Table
问题
在一个 HTML 表格中,我正在使用 Decimal Pipe 来将某一列的值限制为 2 位小数。然而,我还要将该表格下载到 Excel 和 CSV 中。在下载时,我想要去除 Decimal Pipe 并保持值原样。我应该采取什么方法来去除 Pipe?
提前感谢。
英文:
In a html Table, For a certain column I am using Decimal Pipe to restrict the values to 2 Digits. However I am also Downloading that table to Excel and CSV. While Downloading I want to remove the decimal Pipe and want the values as it is. What is the approach that I should follow to remove the Pipe?
Thanks In Advance.
答案1
得分: 1
DecimalPipe 用于仅在模板上将数据以特定格式显示,但不改变对象本身。您仍然可以在其他地方使用对象而不进行任何转换。
例如,您可以创建一个方法,将对象作为参数传递给它,并编写逻辑以在 TypeScript 文件中下载表格。
英文:
DecimalPipe is used to transform the data on template only for showing in certain format but it does not change the object. You should still be able to use the object without any transformation other places.
For ex, you can create a method and pass the object to it as argument and write logic to download the table in ts file.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论