当我向用户显示填充的可编辑表单时(不是用户输入数据并提交)时会出现此错误.数据来自
MySQL,通过REST / JSON在以下服务中显示:
HTML:
<input class="form-control" type="date" name="dateInput" id="dateOfBirth" ng-model="user.dateOfBirth">
CCONTROLLER:
.controller('EditCtrl',function ($scope,$routeParams,UserDetail,$window) { $scope.user = UserDetail.find({},{'id': $routeParams.id}); }
服务:
service.factory('UserDetail',function ($resource) { return $resource( 'http://localhost:8080/ClearsoftDemoBackend/webresources/clearsoft.demo.users/:id',{id: '@id'},{ find: {method: 'GET'},}); });
错误:
错误:[ngModel:datefmt]预计2010-05-13T00:00:00-04:00成为日期
解决方法
它是因为根据角度不是有效的日期.
Check out the doc on input[date]为他们的日期验证笔记.为了成为日期,它应该是YYYY-MM-DD的格式.