Ng2-smart-table 不在 IE 中显示日期时间值
Ng2-smart-table doesn't display date time values in IE
我在 angular 7 应用程序中使用 ng2-smart-table,
我在 table 中使用了 owl-日期时间选择器。值正在添加到数据库中。
我正在从后端获取数组中的值,该数组正在 table 中填充。
但是日期时间值没有显示在框中,它给了我
“InvalidPipeArgument : 'Unable to convert "2019-12-24 13:00:00" into a date' 对于管道 DatePipe'。
我不能分享任何代码,因为这是我基于办公室的应用程序...
任何帮助将不胜感激...
像这样使用时刻
public date : string = '2019-12-24 13:00:00';
public newDate;
this.newDate = moment(this.date).format('MMM Do YYYY');
比绑定this.newDate
<h2> {{newDate}}</h2>
我在 angular 7 应用程序中使用 ng2-smart-table, 我在 table 中使用了 owl-日期时间选择器。值正在添加到数据库中。
我正在从后端获取数组中的值,该数组正在 table 中填充。
但是日期时间值没有显示在框中,它给了我 “InvalidPipeArgument : 'Unable to convert "2019-12-24 13:00:00" into a date' 对于管道 DatePipe'。
我不能分享任何代码,因为这是我基于办公室的应用程序...
任何帮助将不胜感激...
像这样使用时刻
public date : string = '2019-12-24 13:00:00';
public newDate;
this.newDate = moment(this.date).format('MMM Do YYYY');
比绑定this.newDate
<h2> {{newDate}}</h2>