gpt4 book ai didi

javascript - Angular 5 从 API 响应中省略 1.0 中的 .0

转载 作者:行者123 更新时间:2023-11-30 09:18:33 25 4
gpt4 key购买 nike

在 Angular 5 中,我收到的 API 响应为 1.0。但是在填充到 html 字段时它显示为 1。

在 chrome 开发工具中,在网络选项卡下 ->响应 它显示为 1.0,但在网络选项卡 -> 预览 下它显示为 1。

我尝试将响应映射到 Angular 模型,但没有成功。

 response is : 
{
amount: 1.0,
quantity : 3.0,
id: "20184563251",
}


this.result = reportResponse.body;
this.cartForm.patchValue(
{
'inputTextField': this.result.amount, // While patching only 1 is patched
});

最佳答案

尝试 toFixed .它将返回一个字符串

this.rateData.amount.toFixed(1)

关于javascript - Angular 5 从 API 响应中省略 1.0 中的 .0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53280232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com