0

我有一个输入类型 Date,因为我的项目用户 Spring MVC + AngularJs,所以我使用了 AngularUI 的 Datepicker,但是当值发送到请求时,时区总是自动减去 7 小时,我正在寻找所有解决方案但没有找到 anwser,请帮助我!这是链接指南:https ://github.com/angular-ui/ui-date 。编辑:我来自越南和 GTM+7

var app = angular.module('listHistoryApp', ['ui.bootstrap', "ui.select2", 'ui.date']);
app.controller('historyCtrl', function ($scope, $http, $filter, $location) {
    $scope.dateOptions = {
        changeYear: true,
        changeMonth: true,
        dateFormat: "dd-mm-yy",
        yearRange: '1970:-0'
    };
};
<input ui-date="dateOptions" class="span2" type="text" ng-model="fromDate"/>

我希望选择时的输出是27/6/2019or 2019-06-272019-06-27T00:00:00.000Z但实际输出是2019-06-26T17:00:00.000Z.

4

0 回答 0