Skip to content

Instantly share code, notes, and snippets.

@patrickmaciel
Last active December 20, 2018 11:18
Show Gist options
  • Save patrickmaciel/b8e449cc29836fde059f to your computer and use it in GitHub Desktop.
Save patrickmaciel/b8e449cc29836fde059f to your computer and use it in GitHub Desktop.
angular filter para converter uma data (datetime) do mysql para pt_BR #angular
.filter('datetimeToView', ['$filter', function($filter) {
return function(data) {
return $filter('date')(new Date(data).getTime(), 'dd/MM/yyyy HH:mm:ss');
}
}])
// {{ '2014-11-05 12:28:50' | datetimeToView }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment