如何从 JSON 获取日期时间

How to get DateTime from JSON

如何使用 Django REST API 中的 Angular 解析 DateTime?日期以以下格式存储 2016-07-07。 Angular UI Datepicker 无法识别正确的日期格式,因此当我加载表单时我的字段变为空白。

哦。我只需要根据我的 JSON 字符串创建一个新的 Date 对象。

$scope.student.birth_date = new Date($scope.student.birth_date);