admin管理员组文章数量:1342656
var a = moment("24 12 1995").format('DD MM YYYY');
alert(a)
// This should be valid but its not.
var a = moment("12 24 1995").format('DD MM YYYY');
alert(a)
// This should be Invalid, but its valid. (Month is 24)
Version : Moment.js 2.10.3
var a = moment("24 12 1995").format('DD MM YYYY');
alert(a)
// This should be valid but its not.
var a = moment("12 24 1995").format('DD MM YYYY');
alert(a)
// This should be Invalid, but its valid. (Month is 24)
Version : Moment.js 2.10.3
Share asked Jun 24, 2015 at 6:58 SubscriberSubscriber 411 gold badge1 silver badge3 bronze badges 3- 24 months? Which planet are you on? Check formats momentjs./docs/#/displaying/format – Swaraj Giri Commented Jun 24, 2015 at 7:00
- I deliberately write '24' to check if it gets Invalid. but its valid. – Subscriber Commented Jun 24, 2015 at 7:06
-
1
you will need to specify the input format as 2nd param.
moment('24 12 1995','DD MM YYYY')
– Swaraj Giri Commented Jun 24, 2015 at 7:18
3 Answers
Reset to default 5You should pass the format as an argument:
moment("24 12 1995", "DD MM YYYY");
What .format
function does is formatting the output.
So you can do:
var format = "DD MM YYYY";
var date = moment("24 12 1995", format);
alert(date.format(format));
You could use the second parameter
moment("24 12 1995","DD MM YYYY");
to specify the format of the input string.
Then you can format it any way you want :
moment("24 12 1995","DD MM YYYY").format('MM DD YYYY')
moment("24 12 1995","DD MM YYYY").format('DD MM YYYY')
moment("24 12 1995","DD MM YYYY").format('ddd M YYYY')
When you write
moment("24 12 1995").format('DD MM YYYY');
You're parsing "24 12 1995"
using moment's default format options, then taking the created moment object, and outputting it in the 'DD MM YYYY'
format, effectively making your a
variable a string.
What you want instead is the string+format constructor of moment, which you use like this:
moment("12-25-1995", "MM-DD-YYYY");
本文标签: javascriptMomentjs issue format method is not working CorrectlyStack Overflow
版权声明:本文标题:javascript - Moment.js issue format method is not working Correctly - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743680858a2521104.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论