我正在尝试在一台服务器上用JavaScript创建UTC日期,并通过URL查询字符串将其传递给另一台服务器,其中C#可以接受该查询字符串,将其识别为日期并将其与新的C#UTC日期进行比较 - 虽然我觉得这很复杂(除非我只是其中一天)。我没有在stackoverflow上看到任何其他问题(在输入问题时显示的“类似标题”或“类似问题”列表中)。
要在JavaScript中创建数据,我使用以下内容,基于this w3schools article:
var currentDate = new Date();
var day = currentDate.getUTCDate();
var month = currentDate.getUTCMonth();
var year = currentDate.getUTCFullYear();
var hours = currentDate.getUTCHours();
var minutes = currentDate.getUTCMinutes();
var seconds = currentDate.getUTCSeconds();
var milliseconds = currentDate.getUTCMilliseconds();
var expiry = Date.UTC(month,day,year,hours,minutes,seconds,milliseconds);
结果如下1311871476074
因此,在C#中如何从查询字符串和
中获取此值我非常感谢我的逻辑/代码或文章链接中的任何提示,更正。
凯文
的更新
下面的答案都帮助我解决了我的问题:Luke帮助了C#方面的事情,Ray帮助了JavaScript - 不幸的是我不能将它们都标记为答案,但我希望我能做到!
答案 0 :(得分:5)
JavaScript UTC
method返回自1970年1月1日00:00:00 UTC以来的毫秒数。要将这些毫秒转换回C#中的DateTime
,您只需将它们添加到原始& #34;时期":
string rawMilliseconds = Request.QueryString["expiry"];
if (string.IsNullOrWhiteSpace(rawMilliseconds))
throw new InvalidOperationException("Expiry is null or empty!");
long milliseconds;
if (!long.TryParse(rawMilliseconds, out milliseconds))
throw new InvalidOperationException("Unable to parse expiry!");
DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
DateTime expiry = epoch.AddMilliseconds(milliseconds);
答案 1 :(得分:3)
日期时间对象表示时间瞬间,通常在内部表示为自纪元以来的毫秒数。在JavaScript中,为当前时间获取此值,更容易使用
new Date().getTime()
现在您只需要一个数字(或包含数字的字符串),您可以将其传递给C#应用程序并从中构造DateTime对象。
为此,我可以推荐你C# convert UTC int to DateTime object(Jon Skeet有答案。):)