Format Date time in AngularJS

后端 未结 13 1779
Happy的楠姐
Happy的楠姐 2020-11-30 22:00

How do I properly display the date and time in AngularJS?

The output below shows both the input and the output, with and without the AngularJS date filter:



        
13条回答
  •  情话喂你
    2020-11-30 22:49

    you can get the 'date' filter like this:

    var today = $filter('date')(new Date(),'yyyy-MM-dd HH:mm:ss Z');
    

    This will give you today's date in format you want.

提交回复
热议问题