我在我的项目中使用了角度ui datepicker(asp.net web api + angularjs)。一切正常,但是当我试图将日期保存到Db时,它没有正确地将它转换为UTC格式并且在1天内(实际上是几个小时,但它也影响了一天)。
例如,当我在datepicker中选择01/11/2014时:
Angularjs object:
Sat Nov 01 2014 00:00:00 GMT+0200 (FLE Standard Time)
In request:
2014-10-31T22:00:00.000Z
In asp.net api controller:
{31-Oct-14 10:00:00 PM}
Datepicker控制器:
app.controller('DatepickerCtrl', function ($scope) {
$scope.today = function () {
$scope.dt = new Date();
};
$scope.today();
$scope.clear = function () {
$scope.dt = null;
};
$scope.open = function ($event) {
$event.preventDefault();
$event.stopPropagation();
$scope.opened = true;
};
$scope.format = 'dd/MM/yyyy';
$scope.dateOptions = {
'starting-day': 1
};
});
hnml:
<div class="form-group inputGroupContainer" ng-controller="DatepickerCtrl">
<label for="date">Date of Birth</label>
<p class="input-group">
<input type="text" name="date1" ui-date="{dateFormat: 'yy-mm-dd'}" ui-date-format="yy-mm-dd" placeholder="DD/MM/YYYY" class="form-control" datepicker-popup="{{format}}" ng-model="user.Personal.BirthDate" max-date="currentDate" is-open="opened" close-text="Close" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
</span>
</p>
</div>
但似乎有角度的datepicker突出显示正确的日期:
我尝试手动将日期转换为UTC格式,但也未成功
toUTCDate: function (d) {
var date = new Date(d);
var _utc = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate());//, date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()
return _utc;
}
我应该指定时区还是使用角度js过滤器?
答案 0 :(得分:19)
我遇到了完全相同的问题,解决方法是删除日期部分的时区组件。为了以更通用的方式解决问题,我编写了一个指令
csapp.directive("csDateToIso", function () {
var linkFunction = function (scope, element, attrs, ngModelCtrl) {
ngModelCtrl.$parsers.push(function (datepickerValue) {
return moment(datepickerValue).format("YYYY-MM-DD");
});
};
return {
restrict: "A",
require: "ngModel",
link: linkFunction
};
});
上面的指令删除了时区部分,只考虑了ISO日期格式输入的日期部分。
我确实使用moment.js进行日期操作。但是您可以轻松地将上面的内容转换为不使用moment.js
修改强>
使用它如下
<input ng-model='abc' cs-date-to-iso ui-datepicker>
答案 1 :(得分:3)
只需添加Entre答案的coffeescript版本,该版本适用于"angular": "~1.3.14",
:
app.directive 'dateToIso', [ () ->
restrict: 'A',
require: 'ngModel'
link: (scope, el, attrs, ngModel) ->
if (angular.isUndefined(attrs.ngModel))
console.log 'ngModel attribute missing for date-to-iso'
else
ngModel.$parsers.push (datePickerValue) ->
return moment(datePickerValue).format("YYYY-MM-DD")
]
答案 2 :(得分:2)
不要在json请求中发送javascript对象,javascript将浏览器时区添加到JSON中使用的对象的字符串表示形式中。你可以使用这样的东西将日期提取到没有时区的字符串中:
myApp.service('dateService', function(){
this.parse = function(date) {
if(!date){
return ""
}
var day = (date.getDate() < 10 ? '0' : '') + date.getDate();
var month = ((date.getMonth() + 1) < 10 ? '0' : '') + (date.getMonth() + 1);
var hours = (date.getHours() < 10 ? '0' : '') + date.getHours();
var minutes = (date.getMinutes() < 10 ? '0' : '') + date.getMinutes();
var seconds = (date.getSeconds() < 10 ? '0' : '') + date.getSeconds();
return date.getFullYear() + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds
}
});
然后在你的后端你只需要在你选择的时区中使用格式“yyyy-MM-dd HH:mm:ss”将字符串解析为日期对象。我不知道.NET,但在java中你可以这样做:
def jsCalendarFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
jsCalendarFormat.setTimeZone(user.timezone)
Date dateObj = jsCalendarFormat.parse(date)