14

例如,使用日期和时间控件,用户选择日期和时间,使得字符串表示如下:

"6-25-2012 12:00:00 PM"

碰巧这个用户在 EST 时区。该字符串被传递到服务器,服务器将其转换为 .NET DateTime 对象,然后将其存储在 SQL Server 中的 datetime 列中。

稍后将日期返回给浏览器时,需要将其转换回日期,但是当将上述字符串输入日期时,它会损失 4 小时的时间。我相信这是因为在创建 JavaScript 日期时未指定时区时,它默认为本地时间,并且由于 EST 距 GMT 为 -400,它从下午 12 点减去 4 小时,即使下午 12 点本应指定为 EST 时用户在 EST 时区的机器上选择了它。

显然,在将原始日期时间字符串传递给服务器以进行持久化之前,需要将某些内容添加到原始日期时间字符串中。推荐的方法是什么?

4

4 回答 4

21

不要依赖 JavaScript 的Date构造函数来解析字符串。行为和支持的格式因浏览器和语言环境而异。 如果您直接使用该对象,只是一些默认行为。Date

如果您必须来自字符串,请尝试使用标准化格式,例如 ISO8601。您以该格式给出的日期将是"2012-06-25T12:00:00". 在 JavaScript 中使用这些最简单的方法是使用moment.js

另外,请注意您实际要代表的内容。现在,您正在传递本地日期/时间,保存本地/日期/时间,并返回本地日期/时间。在此过程中,“本地”的概念可能会发生变化。

在许多情况下,日期/时间旨在表示准确的时间点。为此,您需要在客户端将输入的本地时间转换为 UTC。将 UTC 发送到您的服务器并存储它。稍后,检索 UTC 并将其发送回您的客户端,将其作为 UTC 处理并转换回本地时间。您可以使用 moment.js 轻松完成所有这些操作:

// I'll assume these are the inputs you have.  Adjust accordingly.
var dateString = "6-25-2012";
var timeString = "12:00:00 PM";

// Construct a moment in the default local time zone, using a specific format.
var m = moment(dateString + " " + timeString, "M-D-YYYY h:mm:ss A");

// Get the value in UTC as an ISO8601 formatted string
var utc = m.toISOString(); // output: "2012-06-25T19:00:00.000Z"

在.Net的服务器上:

var dt = DateTime.Parse("2012-06-25T19:00:00.000Z",   // from the input variable
                        CultureInfo.InvariantCulture, // recommended for ISO
                        DateTimeStyles.RoundtripKind) // honor the Z for UTC kind

将其存储在数据库中。稍后将其检索并发送回:

// when you pull it from your database, set it to UTC kind
var dt = DateTime.SpecifyKind((DateTime)reader["yourfield"], DateTimeKind.Utc);

// send it back in ISO format:
var s = dt.ToString("o"); // "o" is the ISO8601 "round-trip" pattern.

将其传递回 moment.js 中的 javascript:

// construct a moment:
var m = moment("2012-06-25T19:00:00.000Z"); // use the value from the server

// display it in this user's local time zone, in whatever format you want
var s = m.format("LLL");   // "June 25 2012 12:00 PM"

// or if you need a Date object
var dt = m.toDate();

看 - 这很容易,而且您不需要对时区进行任何花哨的事情。

于 2013-08-12T16:55:52.857 回答
2

责怪 JSON.Stringfy()... 并执行以下操作:

x = (your_date);
x.setHours(x.getHours() - x.getTimezoneOffset() / 60);
于 2018-03-15T00:16:52.693 回答
2

在这里,我认为这就是您要查找的内容: 如何忽略用户的时区并强制 Date() 使用特定时区

在我看来,你可以做这样的事情:

var date = new Date("6-25-2012 12:00:00 PM");

var offset = date.getTimezoneOffset(); // returns offset from GMT in minutes

// to convert the minutes to milliseconds
offset *= 60000;

// the js primitive value is unix time in milliseconds so this retrieves the 
// unix time in milliseconds and adds our offset.
// Now we can put this all back in a date object
date = new Date(date.valueOf() + offset);

// to get back your sting you can maybe now do something like this:
var dateString = date.toLocaleString().replace(/\//g,'-').replace(',','');
于 2017-04-27T04:07:36.960 回答
0

在将日期发送到服务器之前,我正在使用过滤器:

vm.dateFormat = 'yyyy-MM-dd';
dateToSendToServer = $filter('date')(dateFromTheJavaScript, vm.dateFormat);
于 2018-03-09T10:22:24.130 回答