DD/MM/YYYY Date format in Moment.js

后端 未结 5 1137
北恋
北恋 2021-01-31 07:39

How can i change the current date to this format(DD/MM/YYYY) using moment.js?

I have tried below code.

$scope.SearchDate = moment(new Date(), \"DD/MM/YYY         


        
5条回答
  •  梦如初夏
    2021-01-31 08:02

    for anyone who's using react-moment:

    simply use format prop to your needed format:

    const now = new Date()
    {now}
    

提交回复
热议问题