格式化日期与moment.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了格式化日期与moment.js相关的知识,希望对你有一定的参考价值。
我有一个这种格式的字符串:
var testDate = "Fri Apr 12 2013 19:08:55 GMT-0500 (CDT)"
我想使用moment.js以这种格式mm/dd/yyyy : 04/12/2013
显示它。
我尝试使用这种方法,
moment(testDate,'mm/dd/yyyy');
哪个错误并说there is no such method called replace
?我是以错误的方式接近这个吗?
编辑:
我还要提一下,我正在使用为meteor.js打包的预打包版本的moment.js
Object [object Date] has no method 'replace' : The Exact error from the console
堆栈跟踪:
at makeDateFromStringAndFormat (http://127.0.0.1:3000/packages/moment/lib/moment/moment.js?b4e3ac4a3d0794023a4410e7941c3e179398b5b0:539:29)
at moment (http://127.0.0.1:3000/packages/moment/lib/moment/moment.js?b4e3ac4a3d0794023a4410e7941c3e179398b5b0:652:24)
at populateProfileForEdit (http://127.0.0.1:3000/client/views/home/administration/directory/profiles/profiles.js?acfff908a6a099f37312f62892a22b40f82e5e0f:147:25)
at Object.Template.profile_personal.rendered (http://127.0.0.1:3000/client/views/home/administration/directory/profiles/profiles.js?acfff908a6a099f37312f62892a22b40f82e5e0f:130:13)
at Spark.createLandmark.rendered (http://127.0.0.1:3000/packages/templating/deftemplate.js?b622653d121262e50a80be772bf5b1e55ab33881:126:42)
at http://127.0.0.1:3000/packages/spark/spark.js?45c746f38023ceb80745f4b4280457e15f058bbc:384:32
at Array.forEach (native)
at Function._.each._.forEach (http://127.0.0.1:3000/packages/underscore/underscore.js?867d3653d53e9c7a171483edbcad9670e12288c7:79:11)
at http://127.0.0.1:3000/packages/spark/spark.js?45c746f38023ceb80745f4b4280457e15f058bbc:382:7
at _.extend.flush (http://127.0.0.1:3000/packages/deps/deps.js?9642a93ae1f8ffa8eb1c2475b198c764f183d693:231:11)
答案
moment()
的第二个参数是parsing format而不是显示格式。
为此,你想要.format()
method:
moment(testDate).format('MM/DD/YYYY');
还要注意案例确实很重要。对于Month,Day和Year,格式应为大写。
另一答案
包括moment.js并使用以下代码,您可以格式化您的日期
var formatDate= 1399919400000;
var responseDate = moment(formatDate).format('DD/MM/YYYY');
我的输出是“13/05/2014”
另一答案
对于fromating输出日期使用format
。第二个时刻参数用于解析 - 但是如果省略它,那么testDate
将导致弃用警告
弃用警告:提供的值不是公认的RFC2822或ISO格式......
var testDate= "Fri Apr 12 2013 19:08:55 GMT-0500 (CDT)"
let s= moment(testDate).format('MM/DD/YYYY');
msg.innerText= s;
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<div id="msg"></div>
以上是关于格式化日期与moment.js的主要内容,如果未能解决你的问题,请参考以下文章