删除小数点分隔符在下载表时

huangapple go评论58阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年4月4日 10:06:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/75924980.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定