vue如何获得当前时间,并且传递给后端(不用注解)
第一步:先获得当前时间var _this = this;let yy = new Date().getFullYear();let mm = new Date().getMonth()+1;let dd = new Date().getDate();let hh = new Date().getHours();let mf = new Date().getMinutes()<10 ? '0'
·
第一步:先获得当前时间
var _this = this;
let yy = new Date().getFullYear();
let mm = new Date().getMonth()+1;
let dd = new Date().getDate();
let hh = new Date().getHours();
let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes() : new Date().getMinutes();
let ss = new Date().getSeconds()<10 ? '0'+new Date().getSeconds() : new Date().getSeconds();
第二步:写用对象返回(我是给后端返回一个对象,所以在time前加了个messageboard,如果你没有直接返回time节ok)
_this.messageBoard.time = yy+"-"+mm+"-"+dd;
console.log(_this.messageBoard.time)
为什么不住注解
以下:后端要求的标准写法,如果你想要加小时,分钟,秒就按照下面的格式写。
standard forms ("yyyy-MM-dd'T'HH:mm:ss.SSSX", "yyyy-MM-dd'T'HH:mm:ss.SSS", "EEE, dd MMM yyyy HH:mm:ss zzz", "yyyy-MM-dd")
更多推荐
已为社区贡献2条内容
所有评论(0)