我正在使用角度8。我想将此日期时间格式("17/06/2020 10:01:09"(转换为此格式("17/06/2020"(。但我无法解决这个问题。我收到此错误"无效管道参数:'无法将管道"日期管道"的"17/06/2020 10:01:09"转换为日期"。
//.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';
}
请帮我找到一个解决方案。谢谢。
角度日期管道适用于日期对象而不是字符串;
myDate = new Date();
然后你的管道工作正常;