Angular4无效的管道参数

Angular4 invalid pipe argument

我正在尝试将此格式的日期转换为 angular '2017-12-13T03:00:00Z[UTC]',为此格式 'yyyy/MM/dd'。 我得到了这个代码:

this.datepipe.transform(d.hour, 'yyyy-MM-dd HH:mm a z')
this.datepipe.transform(d.initDate, 'yyyy/MM/dd')
this.datepipe.transform(d.endDate, 'yyyy/MM/dd')

在浏览器中我得到了这个错误:

ERROR Error: InvalidPipeArgument: '2017-12-13T03:00:00Z[UTC]' for pipe 'DatePipe'
at invalidPipeArgumentError (common.es5.js:2610)
at DatePipe.webpackJsonp.../../../common/@angular/common.es5.js.DatePipe.transform (common.es5.js:3506)
at discipinscripcion.component.ts:31
at Array.forEach (<anonymous>)
at DiscipinscripcionComponent.webpackJsonp.../../../../../src/app/components/discipinscripcion/discipinscripcion.component.ts.DiscipinscripcionComponent.inscribir (discipinscripcion.component.ts:29)
at Object.eval [as handleEvent] (DiscipinscripcionComponent.html:21)
at handleEvent (core.es5.js:11998)
at callWithDebugContext (core.es5.js:13467)
at Object.debugHandleEvent [as handleEvent] (core.es5.js:13055)
at dispatchEvent (core.es5.js:8614)

关于将这种日期格式转换为 yyyy/MM/dd 的任何提示? 非常感谢!

你可以试试这个:

datepipe = new DatePipe(en-US);

或任何其他语言环境。然后return它作为字符串

this.datepipe.transform(new Date(), 'yyyy/MM/dd');

不要忘记从 @angular/common 导入 DatePipe 并在模块的 providers 数组中提供它(假设是 app.module.ts.