开发者

Is it ok to use ticks to pass datetime using ticks between pages of an application

开发者 https://www.devze.com 2022-12-09 09:10 出处:网络
I\'m currently passing some date-time info to a web page using url parameters, which are ticks of date times, and then converti开发者_如何学编程ng the ticks back into date times when I need to at the

I'm currently passing some date-time info to a web page using url parameters, which are ticks of date times, and then converti开发者_如何学编程ng the ticks back into date times when I need to at the other end.

Is there a better way to do this, and why.

for example

http://localhost:57765/dinners/updatedinner/38?startDate=633917664000000000


that's fine, in fact that the standard format for encoding dates for JSON. only concern is timezones, as your tickcount doesn't encode that. you can either always assume the timzone, and do offset calculations based on that, or encode the timezone in the value (eg sD=12343245345-0500)


Representing datetime in human readable format would be much better for developers (troubleshooting etc.) and potential customers of your site.


Given that Ticks is defined as the number of 100-nanosecond intervals that have passed since 12 midnight, January 1, 0001, I can't see there being any functional issues, as long as you either convert to UTC before passing (and from UTC after) or otherwise deal with timezone issues.

That said, there are more human-friendly ways to pass the information, for example passing it as yyyyMMddThhmmss.nnn will be more friendly if anyone wants to manually enter the URL, although it's not quite as precise (if you need better than millisecond precision).

0

精彩评论

暂无评论...
验证码 换一张
取 消