How to display the time in user's timezone

后端 未结 8 1206
深忆病人
深忆病人 2020-11-30 05:42

I am using rails 3.0.5 and I have created_at and updated_at stored in UTC. Now I want to display the created_at time in users\' timezone. I believe it is possible to pick us

相关标签:
8条回答
  • 2020-11-30 05:54

    There is a nice gem by Basecamp called local_time for client side rendering - https://github.com/basecamp/local_time. It's great for applications where user is not signed in and it's caching friendly.

    0 讨论(0)
  • 2020-11-30 05:57

    http://api.rubyonrails.org/classes/Time.html#method-c-use_zone

    This is what you're looking for :

    Time.use_zone(@user.timezone) do
      blah blah blah
    end
    
    0 讨论(0)
  • 2020-11-30 06:03

    You might want to take a look at these links in addition to the one Ben posted:

    • http://railscasts.com/episodes/106-time-zones-in-rails-2-1
    0 讨论(0)
  • 2020-11-30 06:07

    Rails by default converts every date into UTC before storing the value into the database. This means that, regardless the server timezone, you always have UTC dates in your database.

    In order to convert the dates into your user's timezone you have basically two possibilities:

    1. server-side approach
    2. client-side approach

    Server-side approach

    If your site allows registration, you can store the user timezone as user preference. In the user table, store the user timezone. Then create a custom helper you can use to format any date/time into the proper timezone using the in_time_zone method.

    > t = Time.current
    # => Mon, 23 Dec 2013 18:25:55 UTC +00:00 
    > t.zone
    # => "UTC" 
    > t.in_time_zone("CET")
    # => Mon, 23 Dec 2013 19:25:55 CET +01:00 
    

    Your helper may looks like

    def format_time(time, timezone)
      time.in_time_zone(timezone)
    end
    

    I normally also like to output a standard format, using the I18n.l helper

    def format_time(time, timezone)
      I18n.l time.to_time.in_time_zone(timezone), format: :long
    end
    

    Client-side approach

    If your site has no registration or you don't want to ask your users for their timezone or you simply want to use the user system timezone, then you can use JavaScript.

    My suggestion is to create a custom helper that will print out every time in a proper way so that you can create a generic JavaScript function to convert the values.

    def format_time(time, timezone)
      time = time.to_time
      content_tag(:span, I18n.l(time, format: :long), data: { timezone: timezone, time: time.iso8601 })
    end
    

    Now, create a JavaScript function that is performed on DOM load and that will select all the HTML tags with data-time attribute. Loop them and update the value inside the span tag with the proper time in the given timezone.

    A simple jQuery example would be

    $(function() {
        $("span[data-time]").each(function() {
            // get the value from data-time and format according to data-timezone
            // write the content back into the span tag
        });
    });
    

    I'm not posting the full code here, since there are plenty of JavaScript time formatters available with a simple search. Here's a few possible solutions

    • Convert date to another timezone in JavaScript
    • Convert date in local timezone using javascript
    0 讨论(0)
  • 2020-11-30 06:10

    If you'd like to convert your date to a specific Timezone:

    deadline.in_time_zone(time_zone)
    

    Here deadline is a date.

    In addition, you can find Universal time through your local machine Timezone plus local time and vice verse, like in Karachi - +05:00, you can simply add it to value in Universal time to find time in your time zone or get Universal time from your local time by subtraction of Timezone difference (05:00 in our case) from your local time

    0 讨论(0)
  • 2020-11-30 06:16

    My jquery is a rusty, so it took me a little while to figure out how to implement the client-side approach of the accepted answer above.

    Here's my solution:

    HTML:

    <span data-time="<%= last_message_at %>">&nbsp;</span>
    

    Jquery/Javascript:

    <script type="text/javascript">
    $(document).ready($(function() {
        $("span[data-time]").each(function() {
            var timestamp = $(this).attr("data-time");
            var localeTimestamp = new Date(timestamp).toLocaleString();
            $(this).html(localeTimestamp);
        });
    }));
    </script>
    
    0 讨论(0)
提交回复
热议问题