gpt4 book ai didi

angular - 为什么 PrimeNG p-calendar 不显示日期值?

转载 作者:行者123 更新时间:2023-12-05 02:05:26 26 4
gpt4 key购买 nike

我在使用 PrimeNG 日历组件时发现了以下问题。

在 Angular 组件的 HTML View 中,我定义了这个 PrimeNG 组件标签:

<p-calendar [disabled]="disabled"
[(ngModel)]="orderDetail.dettaglio_ordine.data_inserimento"
dateFormat="yyyy-mm-dd"></p-calendar>

这应该查看由 orderDetail.dettaglio_ordine.data_inserimento 标识的 JSON 对象字段中包含的日期。该字段包含以下值:2020-08-08"

事实上在我的 JSON 中我有:

"data_inserimento": "2020-08-08",

问题是,以这种方式执行此日期不会显示到呈现为空的表单中。

为什么?怎么了?我错过了什么?我该如何解决这个问题?

最佳答案

您需要将值从字符串更改为日期,p-calendar 值必须是日期,因此在您从 api 获取值后尝试将其更改为日期。

  data_inserimento = new Date("2020-08-08");

demo 🚀🚀

关于angular - 为什么 PrimeNG p-calendar 不显示日期值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63507220/

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