__defineGetter__和__defineSetter__在日期中的应用
日期函数每次取年月日都要调用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__在日期中的应用的更多相关文章
- oracle中从指定日期中获取月份或者部分数据
从指定日期中获取部分数据: 如月份: select to_CHAR(sysdate,'MM') FROM DUAL; 或者: select extract(month from sysdate) fr ...
- MySQL数据库中日期中包涵零值的问题
默认情况下MySQL是可以接受在日期中插入0值,对于现实来说日期中的0值又没有什么意义.调整MySQL的sql_mode变量就能达到目的. set @@global.sql_mode='STRICT_ ...
- SQL根据出生日期精确计算年龄、获取日期中的年份、月份
第一种: 一张人员信息表里有一人生日(Birthday)列,跟据这个列,算出该人员的年龄 datediff(year,birthday,getdate()) 例:birthday = '2003-3- ...
- JS[获取两个日期中所有的月份]
//------[获取两个日期中所有的月份中] function getMonthBetween(start,end){ var result = []; var s = start.split(&q ...
- 【HANA系列】SAP HANA SQL从给定日期中获取月份
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...
- 【HANA系列】SAP HANA SQL从给定日期中获取分钟
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...
- 【HANA系列】SAP HANA SQL从给定日期中获取年份
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL从给定日 ...
- 面试题1 -- Java 中,怎么在格式化的日期中显示时区?
使用SimpleDateFormat来实现格式化日期 import java.text.SimpleDateFormat; import java.util.Date; public class Da ...
- Excel日期中那个著名的bug
一个软件中的bug能够持续多久?答案不一,大多数bug在软件测试阶段就已经被干掉,又有许多死在Preview阶段,抑或正式上线后不久被干掉,有些则伴随软件终生,直到下一代产品发布才寿终正寝,而Exce ...
随机推荐
- qq邮箱html邮件,图片不显示的问题
测试无论是站外的图片还是站内的图片,qq邮箱都会过滤图片,导致显示不出来. 解决办法:图片base64编码.效果图: 代码: <div class="container"&g ...
- .NET CORE中Encoding对GB2312等编码的支持
最近.NET CORE做网络爬虫的时候,遇到了charset=gbk,转码的时候,发现直接使用Encoding.GetEncoding(“GB2312”)抛异常了.好吧,看到这个的时候,我是一脸懵逼的 ...
- 【python之路37】with上下文管理
一.上下文的基本实现 1.如下例,执行过程如下面代码: #!usr/bin/env python # -*- coding:utf-8 -*- import queue import contextl ...
- 【笔记】LR集合点
集合点的引入是为了模拟并发场景: 1.模拟多用户相同操作的并发. 2.模拟多用户不同操作的并发.(把集合点的名字改成一个就可以了) 在脚本中插入集合点 集合点只需要在脚本中插入rendezvous即可 ...
- 【笔记】LR中设置检查点
我们为什么需要在LR中设置检查点?? 我们在录制编写脚本后,通常会进行回放,如果回放通过没有错误.我们就认为脚本是正确的.那么LR怎么区分脚本是否回放正确:基本上所有脚本回放错误都是因为 404错 ...
- windows 环境下搭建docker私有仓库
windows 环境下搭建docker私有仓库 1.在公用仓库中pull仓库镜像 docker pull regitry 2.启动仓库镜像 //-d意思是后台运行,-p是做端口映射,这里是将本地的50 ...
- 【洛谷】P1590 失踪的7
P1590 失踪的7 题目描述 远古的Pascal人也使用阿拉伯数字来进行计数,但是他们又不喜欢使用7,因为他们认为7是一个不吉祥的数字,所以Pascal数字8其实表示的是自然数中的7,18表示的是自 ...
- git pull 总提示让输入merge 信息
在生产环境拉去代码的时候,总是出现了 .git/MERGE_MSG,很烦. 虽然每次可以通过输入 :q 命令,取消,然后完成拉取.但是这样就很影响效率.解决办法一: 欺骗自己法只要我没看见这个问题,这 ...
- bzoj 3895 取石子——博弈论
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=3895 看题解:https://blog.csdn.net/popoqqq/article/d ...
- Python3.7.4入门-6/7错误和异常/类
6 错误和异常 while True: try: x = int(input("Please enter a number: ")) break except ValueError ...