JS有很多类库提供日期转换函数,AngularJS也不例外。可以通过$filter来完成转换,方法如下:
$filter('date')(sourceDate, "yyyy/MM/dd") // yyyy/MM/dd指定转换的格式
So easy.