Angularjs - display current date

后端 未结 11 1163
醉酒成梦
醉酒成梦 2020-12-04 08:06

I got a view in angularjs and I\'m just trying to display the current date(formatted). I thought something like {{Date.now() | date:\'yyyy-MM-dd\'}}

11条回答
  •  醉梦人生
    2020-12-04 08:54

    You have to create a date object in your controller first:

    controller:

    function Ctrl($scope)
    {
        $scope.date = new Date();
    }
    

    view:

    {{date | date:'yyyy-MM-dd'}}

    JSFiddle example

    Angular Date Filter Ref

提交回复
热议问题