Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
504 views
in Technique[技术] by (71.8m points)

momentjs - Why is local time not being returned from moment.js local() method call

I have turned a date/time object in UTC to a moment instance and now I'm trying to get the local system time from that moment instance. This is what I'm doing below, but it's not giving me the local time.

console.log("{{ form.instance.scheduled_at|date:"M j g:i A T" }}")
// returns Jan 27 6:41 PM UTC

$selected_date = new moment("{{ form.instance.scheduled_at|date:"M j g:i A T" }}", "MMM D h:mm a")
console.log($selected_date)
// returns {_isAMomentObject: true, _i: "Jan 27 6:41 PM UTC", _f: "MMM D h:mm a", _isUTC: false, _pf: Object, …}

// LOCAL TIME NOT BEING RETURNED HERE
console.log($selected_date.local())
// returns {_isAMomentObject: true, _i: "Jan 27 6:41 PM UTC", _f: "MMM D h:mm a", _isUTC: false, _pf: Object, …}

What am I doing wrong?

question from:https://stackoverflow.com/questions/65851370/why-is-local-time-not-being-returned-from-moment-js-local-method-call

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...