在 javascript 或 momentjs 中获取给定的日期格式(指定格式的字符串)

2023-04-20前端开发问题
2

本文介绍了在 javascript 或 momentjs 中获取给定的日期格式(指定格式的字符串)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

给定一个日期字符串,如何获取描述该日期字符串的格式字符串?

Given a datestring, how can I get the format string describing that datestring?

换一种说法,如果没有传递要使用的显式格式,我如何获取 Date() 或 MomentJS(可能每个都不同,这很好)用来解析该日期字符串的格式字符串?

Put another way, how can I get the format string that Date() or MomentJS (might be different for each, that's fine) would use to parse that datestring if one didn't pass an explicit format to use?

所以给定 '2016-01-01' 它应该输出类似 'YYYY-MM-DD' 的内容,例如.

So given '2016-01-01' it should output something like 'YYYY-MM-DD', for example.

(我知道这是一个简单的问题,可能在某处有答案,但很难用简洁的语言表达,所以我只能找到有关如何解析日期字符串或如何显示日期的问题和答案.没有关于如何输出格式本身.)

(I am aware this is a simple question and may have an answer somewhere, but it is difficult to word concisely, so I could only find questions and answers about how to parse datestrings or how to display dates. None about how to output the format itself.)

推荐答案

整合来自 Matt Johnson 的回答的信息,一些评论,以及我自己的贡献.

Consolidating information from Matt Johnson's answer, some comments, and my own contribution.

使用 Moment.js(版本 2.10.7+),您可以使用 Creation数据 API.Node.js 中的类似内容:

With Moment.js (version 2.10.7+), you can use the Creation Data API. Something like this in Node.js:

moment('2016-01-01 00:00:00').creationData().format

输出

'YYYY-MM-DD HH:mm:ss'

就像任何日期解析一样,许多日期字符串的格式由于语言环境等因素而存在歧义(例如,在美国和欧洲之间切换月份和日期的顺序).但是上面的方法对我来说已经足够了.

Just as any date parsing is, there is ambiguity about the format of many datestrings due to things such as locale (the order of months and days are switched between the US and Europe, for example). But the above method is sufficient for me.

这篇关于在 javascript 或 momentjs 中获取给定的日期格式(指定格式的字符串)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

Fatal error: Call to a member function fetch_assoc() on a no
业务场景:使用update语句去更新数据库字段。 原因:update接收值不正确。原来代码: $query = "UPDATE student SET date = now() WHERE id = $id";$result = $mysqli-query($query2) or die($mysqli-error); // 问题出现了在这句 $data = $result-fetch_ass...
2024-12-13 前端开发问题
136

layui实现laydate日历控件控制之前日期不可选择
具体实现代码如下: laydate.render({ elem: '#start_time', min:0, //,type: 'date' //默认,可不填}); 只要加一个min参数,就可以控制了。0表示之前的日期不可...
2024-11-29 前端开发问题
133

js删除数组中指定元素的5种方法
在JavaScript中,我们有多种方法可以删除数组中的指定元素。以下给出了5种常见的方法并提供了相应的代码示例: 1.使用splice()方法: let array = [0, 1, 2, 3, 4, 5];let index = array.indexOf(2);if (index -1) { array.splice(index, 1);}// array = [0,...
2024-11-22 前端开发问题
182

layui laydate日期时间范围,时间默认设定为23:59:59
在Layui中,如果你想设置日期时间选择器(datetime)的默认结束时间为当天的23:59:59,你可以使用如下代码: laydate.render({ elem: '#test10' ,type: 'datetime' ,range: true ,max: '{:date("Y-m-d 23:59:59")}' ,ready: function(date){ $(".layui-laydat...
2024-10-24 前端开发问题
279

JavaScript小数运算出现多位的解决办法
在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会...
2024-10-18 前端开发问题
301

JavaScript(js)文件字符串中丢失"\"斜线的解决方法
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转...
2024-10-17 前端开发问题
437