Render an Observable Date with the Async and Date Pipes

John Lindquist
InstructorJohn Lindquist
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated a year ago

Instead of simply pushing numbers on a timer into the template, now we'll move on to pushing actual Dates. We'll still use the Async pipe, but we'll also add on the Date pipe with some formatting to display the Date just the way we want it.

[00:00] To turn this clock into a working clock instead of just pumping out zero through infinity, what we need to do is push out a date. We're going to map, which takes a function. Each time this ticks we're going to return a new date. Don't forget, every time you use a method you have to import it here. I'll go ahead and import map. Now once I hit Save and I refresh over here, you can see that now we'll get some dates printed out.

[00:31] We actually have control over this date if we use the date pipe, which I'll go ahead and use. Date and then that takes a format string, which I'm just going to go ahead and copy and paste in. Looks like this. I'll hit Save and Refresh. You can see we get the full Wednesday and then a bit nicer format for our time.

[00:56] All of these formats are the standard date formats you see in other languages. You can find them in the Angular docs if you want to format this however you want.

John Jones
John Jones
~ 8 years ago

The date pipe won't work in the current release of Safari as of 2016 June 25. Angular2 will self-immolate and very helpfully tell you that the problem arose in [object Object]. If you're trying to get this to work, you'll need to add the Intl polyfill to your index.html.

  1. Install the Intl package. npm install --save intl

  2. Then, for English locale, in your index.html under the other "polyfills" you must already have, add:

<script src="node_modules/intl/dist/Intl.js"></script>
<script src="node_modules/intl/locale-data/jsonp/en.js"></script>
RAIIST
RAIIST
~ 6 years ago

What IDE are you using that autopopulates your imports so well?

Markdown supported.
Become a member to join the discussionEnroll Today