Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在玩,momentjs我想知道相对时间是否有任何反向操作。例如,我想做这样的事情:
momentjs
var relativeTime = moment([2007, 0, 29]).fromNow(); // returns "6 years ago" var date = moment(relativeTime).toDate(); // use date later somewhere
不,moment.js 目前不提供此功能。
但是,你很幸运。 Sugar.js可以做到这一点。
Date.create('6 years ago')