JavaScript code to display Twitter created_at as xxxx ago

前端 未结 8 559
一生所求
一生所求 2020-12-24 14:51

I need some JS code that will take the created_at value from a Twitter feed and display it as xxxx ago.

I can find examples of creating the xxxx a

8条回答
  •  猫巷女王i
    2020-12-24 15:49

    I was running into this issue myself, and I think it's time for a grown-up library. I use moment.js for time formatting, so I wrote an extension to do the right display parsing for Twitter:

    https://github.com/hijonathan/moment.twitter

    It also has a different method for returning super abbreviated timestamps (e.g. 7h) like in the Twitter iPhone app.

提交回复
热议问题