typescript 自定义日期管道Angular(格式日期)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 自定义日期管道Angular(格式日期)相关的知识,希望对你有一定的参考价值。

   <kendo-grid-column  title="טווח תאריכים למועד">
        <ng-template kendoGridCellTemplate let-dataItem>
            <span>{{dataItem.tvahTaarihimLeMoedStart|customDate:dataItem.tvahTaarihimLeMoedStart}}</span>
            <span *ngIf="dataItem.tvahTaarihimLeMoedStart && dataItem.tvahTaarihimLeMoedEnd " class="dash">-</span>
            <span >{{dataItem.tvahTaarihimLeMoedEnd|customDate:dataItem.tvahTaarihimLeMoedEnd}}</span>
       </ng-template>
   </kendo-grid-column>
import {Pipe, PipeTransform} from '@angular/core';

@Pipe({
    name: 'customDate'
})
export class CustomDatePipe implements PipeTransform {

    transform(value: Date, args?: any): any {
        // console.log(value);
        const formattedDate = value.toLocaleDateString('en-GB', {
            day: 'numeric', month: 'numeric', year: 'numeric'
        }).replace(/ /g, '/');
        return formattedDate;
    }
}

以上是关于typescript 自定义日期管道Angular(格式日期)的主要内容,如果未能解决你的问题,请参考以下文章

Angular2:找不到自定义管道

找不到管道:Angular 5 自定义管道

angular自定义管道

Angular:关于何时制作自定义管道与组件的规则

Typescript/Angular 12:将自定义对象转换为参数对象

从共享文件夹导入 Angular 自定义管道时出错