How do I convert API supplied date/time string into readable format?

jabs83

I'm working with a Python backend API that gives me date/time in a string represented as such:

2014-07-21T16:50:34.144Z  

What is this format, and how might I use javascript in my Ember app to put that string into a human readable format?

jabs83

Ember actually includes a library(http://momentjs.com/) for handling dates/times. I created a helper with the following code:

Ember.Handlebars.helper('format-date', function(date) {
  return moment(date).format('LLL');
});

Then in my handlebars template I have a call to the helper:

{{format-date dateCreated}}

The helper tag passes the date attribute to the helper, and the moment function handles the formatting. The 'LLL', per the moment.js docs specifies the actual format the date takes. In my case

2014-07-21T16:50:34.144Z  

formats into

July 21 2014 9:50 AM

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to convert string to dig readable format rails?

分類Dev

How do I convert a Calendar object to an ISO 8601 format DateTime string?

分類Dev

How to convert string data with variable format to datetime?

分類Dev

How can I convert a JSON string to something readable?

分類Dev

How do I convert the string "NULL" in a flat file to DATETIME or DATETIME2?

分類Dev

How do I convert a DateTime variable to return date in the 'mm/dd/yy' format

分類Dev

How do I convert multiple `string` columns in my dataframe to datetime columns?

分類Dev

How to convert DateTime to a String

分類Dev

What is datetime object in Google API, and how to format its string output?

分類Dev

How do I convert a string with no delimiters into a date?

分類Dev

How do I convert a string to an object

分類Dev

How do i convert List into datetime.date object?

分類Dev

How do I convert an object containing an Oracle Date to a DateTime?

分類Dev

How to convert string format of time type field in DolphinDB c ++ API

分類Dev

Convert a specific format dateTime string to DateTime in C#

分類Dev

how do i convert format of current time in python

分類Dev

Korn/Bash Shell: How to do I convert the contents to the below format?

分類Dev

How to convert a datetime format to minutes - pandas

分類Dev

How to convert a column with null values to datetime format?

分類Dev

Convert date from human readable format golang

分類Dev

convert escaped unicode sequence to human readable format

分類Dev

How can I convert date time format string used by C# to the format used by moment.js?

分類Dev

SQL DateTime Format Convert

分類Dev

How Do I Convert an Integer to a String in Excel VBA?

分類Dev

How do I convert a string to f32?

分類Dev

How do i convert an int retrieved from a database to string

分類Dev

How do I convert a String of date time data to a LocalDate?

分類Dev

How do I convert a string into an HTTP Response in C#?

分類Dev

How do I convert a HTML table object to a string?

Related 関連記事

  1. 1

    How to convert string to dig readable format rails?

  2. 2

    How do I convert a Calendar object to an ISO 8601 format DateTime string?

  3. 3

    How to convert string data with variable format to datetime?

  4. 4

    How can I convert a JSON string to something readable?

  5. 5

    How do I convert the string "NULL" in a flat file to DATETIME or DATETIME2?

  6. 6

    How do I convert a DateTime variable to return date in the 'mm/dd/yy' format

  7. 7

    How do I convert multiple `string` columns in my dataframe to datetime columns?

  8. 8

    How to convert DateTime to a String

  9. 9

    What is datetime object in Google API, and how to format its string output?

  10. 10

    How do I convert a string with no delimiters into a date?

  11. 11

    How do I convert a string to an object

  12. 12

    How do i convert List into datetime.date object?

  13. 13

    How do I convert an object containing an Oracle Date to a DateTime?

  14. 14

    How to convert string format of time type field in DolphinDB c ++ API

  15. 15

    Convert a specific format dateTime string to DateTime in C#

  16. 16

    how do i convert format of current time in python

  17. 17

    Korn/Bash Shell: How to do I convert the contents to the below format?

  18. 18

    How to convert a datetime format to minutes - pandas

  19. 19

    How to convert a column with null values to datetime format?

  20. 20

    Convert date from human readable format golang

  21. 21

    convert escaped unicode sequence to human readable format

  22. 22

    How can I convert date time format string used by C# to the format used by moment.js?

  23. 23

    SQL DateTime Format Convert

  24. 24

    How Do I Convert an Integer to a String in Excel VBA?

  25. 25

    How do I convert a string to f32?

  26. 26

    How do i convert an int retrieved from a database to string

  27. 27

    How do I convert a String of date time data to a LocalDate?

  28. 28

    How do I convert a string into an HTTP Response in C#?

  29. 29

    How do I convert a HTML table object to a string?

ホットタグ

アーカイブ