小程序
小游戏
企业微信
微信支付
扫描小程序码分享
向数据库查询信息,其中返回给小程序的时间字段: 是这样。
数据库中:
js 中没有SimpleDateFormat 怎么处理转换。
大佬解答下。😮😀
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
/** 扩展Date对象方法:格式化日期 */
Date.prototype.format =
function
(fmt) {
var
o = {
"M+"
:
this
.getMonth() + 1,
//月份
"d+"
.getDate(),
//日
"h+"
.getHours(),
//小时
"m+"
.getMinutes(),
//分
"s+"
.getSeconds(),
//秒
"q+"
: Math.floor((
.getMonth() + 3) / 3),
//季度
"S"
.getMilliseconds()
//毫秒
};
if
(!fmt) fmt =
"yyyy-MM-dd hh:mm:ss"
;
(/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (
.getFullYear() +
""
).substr(4 - RegExp.$1.length));
}
for
(
k
in
o) {
new
RegExp(
"("
+ k +
")"
).test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : ((
"00"
+ o[k]).substr((
+ o[k]).length)));
return
fmt;
使用方法:
new Date(返回的时间).format();
如果不传参数默认格式化成:yyyy-MM-dd hh:mm:ss格式
像这种问题一搜一大把,有提问这个时间早就研究出来了。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
var d = new Date(res[0].DepartTime);
var youwant=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate()+" "+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();
console.log(youwant)
过来学习,谢谢分享。
有Date类呀 你可以自己写转换或者去百度一个
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
/** 扩展Date对象方法:格式化日期 */
Date.prototype.format =
function
(fmt) {
var
o = {
"M+"
:
this
.getMonth() + 1,
//月份
"d+"
:
this
.getDate(),
//日
"h+"
:
this
.getHours(),
//小时
"m+"
:
this
.getMinutes(),
//分
"s+"
:
this
.getSeconds(),
//秒
"q+"
: Math.floor((
this
.getMonth() + 3) / 3),
//季度
"S"
:
this
.getMilliseconds()
//毫秒
};
if
(!fmt) fmt =
"yyyy-MM-dd hh:mm:ss"
;
if
(/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (
this
.getFullYear() +
""
).substr(4 - RegExp.$1.length));
}
for
(
var
k
in
o) {
if
(
new
RegExp(
"("
+ k +
")"
).test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : ((
"00"
+ o[k]).substr((
""
+ o[k]).length)));
}
}
return
fmt;
};
使用方法:
new Date(返回的时间).format();
如果不传参数默认格式化成:yyyy-MM-dd hh:mm:ss格式
像这种问题一搜一大把,有提问这个时间早就研究出来了。
var d = new Date(res[0].DepartTime);
var youwant=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate()+" "+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();
console.log(youwant)
过来学习,谢谢分享。
有Date类呀 你可以自己写转换或者去百度一个