I have a service that returns json like this:
"Results":[{"Id":"1","SomeDate":"2/19/2013 10:34:04 PM"}
When I try to format using the binding, it does not work - it just displays the line above:
{{values.SomeDate| date:'mediumTime' }}
However, it works if I just pass in this format:
{{ '1997-03-01T00:00:00+01:00' | date:'mediumTime'}}
What is the best way to fix this?
angularjs
schmoopy
source share