【发布时间】:2019-04-16 05:46:31
【问题描述】:
在 Angular 5 中,我得到的 API 响应为 1.0。但是在填充到 html 字段时,它显示为 1。
在 chrome 开发工具中,在 Network tab->Response 下显示为 1.0,但在 Network Tab -> Preview 下显示为 1。
我尝试将响应映射到有角度的模型,但没有成功。
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
});
【问题讨论】:
标签: javascript angular typescript api httpresponse