一、日期管道

1-1.news.component.ts

  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-news',
  4. templateUrl: './news.component.html',
  5. styleUrls: ['./news.component.css']
  6. })
  7. export class NewsComponent implements OnInit {
  8. time = new Date();
  9. constructor() {}
  10. ngOnInit(): void {
  11. }
  12. }

1-2.news.component.html

  1. <h4>管道</h4>
  2. <p>{{time | date:"yyyy-MM-dd HH:mm:ss"}}</p>

image.png