Html5日期字段无法设置来自后端的返回日期字段

时间:2018-06-14 05:48:08

标签: javascript angularjs html5 momentjs html5-input-date

我有html日期字段。 我有一个创建页面,我将日期插入MySQL数据库 我有一个编辑页面,我将获取日期并设置回输入字段。

<input id="dob" name="dob" type="date" placeholder="Enter date of birth" class="form-control" ng-model="user.dob"/>

JS

function loadUserById() {
        ApiService.getById($scope.id).then(function(response) {
            $scope.user = response.data[0];
            $scope.user.password1 = response.data[0].password;

            if($scope.user.dob) {
                var date = new Date($scope.user.dob);
                $scope.user.dob = moment(date).format("MM/DD/YYYY");
            }
        }, function(error) {
            console.log(error);
        });
    }

问题

我将日期从此字段插入MySQL数据库,我将其格式化为YYYY-MM-DD格式。然后我格式化为mm/dd/yyyy格式并尝试在html日期字段中设置它。

但这是错误。

angular.js:14642 Error: [ngModel:datefmt] http://errors.angularjs.org/1.6.5/ngModel/datefmt?p0=06%2F03%2F2018
at angular.js:88
at Array.<anonymous> (angular.js:25252)
at angular.js:29245
at m.$digest (angular.js:18202)
at m.$apply (angular.js:18480)
at l (angular.js:12501)
at XMLHttpRequest.s.onload (angular.js:12655)

1 个答案:

答案 0 :(得分:1)

得到了答案。 需要使用ng-value然后它会自动将日期设置到字段中。

function loadUserById() {
        ApiService.getById($scope.id).then(function(response) {
            $scope.user = response.data[0];
            $scope.user.password1 = response.data[0].password;

            if($scope.user.dob) {
                var date = new Date($scope.user.dob);
                $scope.user.dob = moment(date).format("YYYY-MM-DD");
            }
        }, function(error) {
            console.log(error);
        });
    }


<input id="dob" name="dob" type="date" ng-readonly="readOnly" placeholder="Enter date of birth" class="form-control" ng-model="user.dob" ng-value="user.dob"/>