日期函数每次取年月日都要调用Date的函数,有点麻烦,通过__defineGetter__可以处理一下,就能通过Date的实例对象直接获取年月日,例如 date.year获取日期对象date的年份。月份因为与正常月份差一个月,可以通过函数自动校正一下,使用起来就更符合习惯了。很多时候我们需要显示一个日期、时间或者日期时间,就可以通过__defineGetter__处理好之后,直接返回对应的数据。

let { log } = console;

Date.prototype.__defineGetter__('year', function() {return this.getFullYear();});
Date.prototype.__defineSetter__('year', function(y) {this.setFullYear(y)});
Date.prototype.__defineGetter__('month', function() {return this.getMonth() + 1;});
Date.prototype.__defineSetter__('month', function(m) {this.setMonth(m-1)});
Date.prototype.__defineGetter__('day', function() {return this.getDate();});
Date.prototype.__defineSetter__('day', function(d) {this.setDate(d)});
Date.prototype.__defineGetter__('hour', function() {return this.getHours();});
Date.prototype.__defineSetter__('hour', function(h) {this.setHours(h)});
Date.prototype.__defineGetter__('minute', function() {return this.getMinutes();});
Date.prototype.__defineSetter__('minute', function(m) {this.setMinutes(m)});
Date.prototype.__defineGetter__('seconds', function() {return this.getSeconds();});
Date.prototype.__defineSetter__('seconds', function(s) {this.setSeconds(s)}); Date.prototype.__defineGetter__("date", function (){return `${this.year}-${(this.month.dbl())}-${this.day.dbl()}`});
Date.prototype.__defineGetter__("time", function (){return `${this.hour.dbl()}:${this.minute.dbl()}:${this.seconds.dbl()}`});
Date.prototype.__defineGetter__("datetime", function (){return `${this.date} ${this.time}`}); // 将数字转换成2位的字符串,不足两位的在前面补0
Number.prototype.dbl = function (){
return String(this).padStart(2, 0);
} let num = 2;
log(num.dbl()); function doubleNum(n){
return String(n).padStart(2, 0);
} var now = new Date;
log("%O",now); // 这样打印可以看到日期的属性和方法
let { year: y, month: m, day: d } = now; log("年:%s",y) // 年:2019
log(y, m, d); // 2019 6 20
log(now.date); // 2019-06-20
log(now.time); // 10:56:53
log(now.datetime); // 2019-06-20 10:56:53

  上面这种写法已经过时了,现在已经不推荐使用__defineGetter__和__defineSetter__。因此可以使用Object.defineProperty来实现,下面是代码

// 将数字转换成2位的字符串,不足两位的在前面补0
Number.prototype.dbl = function (){
return String(this).padStart(2, 0);
} Object.defineProperty(Date.prototype, "year", {
enumerable : true,
configurable : true,
get: function (){
return this.getFullYear();
},
set: function (y){
this.setFullYear(y);
}
}); Object.defineProperty(Date.prototype, "month", {
enumerable : true,
configurable : true,
get: function (){
return this.getMonth() + 1;
},
set: function (m){
this.setMonth(m - 1);
}
}); Object.defineProperty(Date.prototype, "day", {
enumerable : true,
configurable : true,
get: function (){
return this.getDate();
},
set: function (d){
this.setDate(d);
}
}); Object.defineProperty(Date.prototype, "hour", {
enumerable : true,
configurable : true,
get: function (){
return this.getHours();
},
set: function (h){
this.setHours(h);
}
}); Object.defineProperty(Date.prototype, "minutes", {
enumerable : true,
configurable : true,
get: function (){
return this.getMinutes();
},
set: function (m){
this.setMinutes(m);
}
}); Object.defineProperty(Date.prototype, "seconds", {
enumerable : true,
configurable : true,
get: function (){
return this.getSeconds();
},
set: function (s){
this.setSeconds(s);
}
}); Object.defineProperty(Date.prototype, "y", {
get: function (){
return this.year;
}
});
Object.defineProperty(Date.prototype, "m", {
get: function (){
return this.month;
}
});
Object.defineProperty(Date.prototype, "d", {
get: function (){
return this.day;
}
});
Object.defineProperty(Date.prototype, "h", {
get: function (){
return this.hour;
}
});
Object.defineProperty(Date.prototype, "min", {
get: function (){
return this.minutes;
}
});
Object.defineProperty(Date.prototype, "s", {
get: function (){
return this.seconds;
}
}); Object.defineProperty(Date.prototype, "date", {
get: function (){
// return `${this.y}-${this.m.dbl()}-${this.d.dbl()}`;
const that = this;
return function (sep = "-"){
return `${that.y}${sep}${that.m.dbl()}${sep}${that.d.dbl()}`;
}
}
}); Object.defineProperty(Date.prototype, "time", {
get: function (){
return `${this.h.dbl()}:${this.min.dbl()}:${this.s.dbl()}`;
}
}); Object.defineProperty(Date.prototype, "datetime", {
get: function (){
// return `${this.date} ${this.time}`;
const that = this;
return function (sep = "-"){
return `${this.date(sep)} ${this.time}`;
}
}
}); let d = new Date();
console.log(d.date());
console.log(d.time);
console.log(d.datetime("/"));

  

  

__defineGetter__和__defineSetter__在日期中的应用的更多相关文章

  1. oracle中从指定日期中获取月份或者部分数据

    从指定日期中获取部分数据: 如月份: select to_CHAR(sysdate,'MM') FROM DUAL; 或者: select extract(month from sysdate) fr ...

  2. MySQL数据库中日期中包涵零值的问题

    默认情况下MySQL是可以接受在日期中插入0值,对于现实来说日期中的0值又没有什么意义.调整MySQL的sql_mode变量就能达到目的. set @@global.sql_mode='STRICT_ ...

  3. SQL根据出生日期精确计算年龄、获取日期中的年份、月份

    第一种: 一张人员信息表里有一人生日(Birthday)列,跟据这个列,算出该人员的年龄 datediff(year,birthday,getdate()) 例:birthday = '2003-3- ...

  4. JS[获取两个日期中所有的月份]

    //------[获取两个日期中所有的月份中] function getMonthBetween(start,end){ var result = []; var s = start.split(&q ...

  5. 【HANA系列】SAP HANA SQL从给定日期中获取月份

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...

  6. 【HANA系列】SAP HANA SQL从给定日期中获取分钟

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...

  7. 【HANA系列】SAP HANA SQL从给定日期中获取年份

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...

  8. 面试题1 -- Java 中,怎么在格式化的日期中显示时区?

    使用SimpleDateFormat来实现格式化日期 import java.text.SimpleDateFormat; import java.util.Date; public class Da ...

  9. Excel日期中那个著名的bug

    一个软件中的bug能够持续多久?答案不一,大多数bug在软件测试阶段就已经被干掉,又有许多死在Preview阶段,抑或正式上线后不久被干掉,有些则伴随软件终生,直到下一代产品发布才寿终正寝,而Exce ...

随机推荐

  1. 【xlwings1】快速入门

    前言:安装 pip install xlwings xlwings 安装成功后,如果运行提示报错“ImportError: no module named win32api”,请再安装 pypiwin ...

  2. bzoj 1050 [HAOI2006]旅行comf——kruscal

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1050 因为还有Impossible的情况,所以想到了kruscal.(?) 但好像不太行.然 ...

  3. linux apache vhost

    <VirtualHost *:80> DocumentRoot "/usr/www/yltgerp_old/" ServerName erp.yltg.com.cn E ...

  4. swagger暴露程序接口文档

    Swagger2是一个帮助用户.团队.企业快速.高效.准确地生产API服务的工具组件,同时还提供了部分测试功能,它的官方网站是https://swagger.io/. 1.引入Maven <de ...

  5. 2019.9.21 csp-s模拟测试49 反思总结

    没赶上昨天的考试,不过我这种人考不考都没有多少提升吧. 挺服气的一场考试,有生以来参加的最让人想笑的考试. T1:养花 取模,区间询问最大值,有点套路化的预处理答案…难点也在预处理上.容易想到分块然后 ...

  6. 2019-9-2-windows-10「设置」应用完整ms-settings快捷方式汇总

    title author date CreateTime categories windows-10「设置」应用完整ms-settings快捷方式汇总 lindexi 2019-09-02 12:57 ...

  7. LinqToExcel 简洁与优美开源库

    转载:https://www.cnblogs.com/codefish/archive/2013/04/08/3009098.html 正在做项目,同事问道有啥简单的方法读取excel到DataTab ...

  8. 举例分析private的作用【c/c++学习】

    抛砖引玉: c++中private的用处 我知道我们可以用 public 中的值,把private中的数据给提出来,但是还是搞不懂private该怎么用,或者说在一个具体程序中,private有什么用 ...

  9. 考试总结 模拟28(W)

    心得: 状态极差,都怪放假,上一套的T3没改完,今天考试没有一点状态,开学恐惧症.(不恐惧作业或一调但还是很茫然) T1能A掉实在是意外,杂题T1没做过,可能是人品守恒,(丢了钱今天才发现以后一定锁柜 ...

  10. 隐马尔可夫模型及Viterbi算法

    隐马尔可夫模型(HMM,hidden Markov model)是可用于标注问题的统计学模型,描述由隐藏的马尔可夫链随机生成观测序列的过程,属于生成模型.HMM模型主要用于语音识别,自然语言处理,生物 ...