我正在尝试将我的日期值格式化为M/d/yy
使用 Angular 日期管道。它在 localhost 中运行良好,但是何时在远程服务器上部署 - 日期管道设置了不正确的格式 - YYYY-MM-DD HH-MM
.
那里有我的代码:
@Component({
selector: 'app-date',
template:
'<span>{{ curDate | date: this.dateFormat }}</span>',
})
export class DateComponent<M> extends BaseComponent<M> {
dateFormat = 'M/d/yy';
curDate = this.date // 2021-03-24T07:57:50.711Z
}
有人可以帮我弄这个吗?