0

我正在使用角度 8。我想将此日期时间格式(“17/06/2020 10:01:09”)转换为这种格式(“17/06/2020”)。但我无法解决这个问题。我收到此错误“InvalidPipeArgument:'无法将“17/06/2020 10:01:09”转换为管道'DatePipe'的日期'”。

//html

<p>My date: {{myDate | date:'dd/MM/yyyy'}}</p>

//ts文件

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 templateUrl: './app.component.html'
})
export class AppComponent {
   myDate = '17/06/2020 10:01:09';
}

请帮助我找到解决方案。谢谢。

4

1 回答 1

1

角度日期管道适用于日期对象而不是字符串;

myDate = new Date();

然后你的管道工作正常;

于 2020-06-18T11:21:09.637 回答