我正在使用jQuery验证插件,并想知道如何才能验证给定的日期是在当前年份?
我有这样的代码,确保字段是必需的,并且它是一个有效的日期,但我也希望确保日期在当前年份,当前为2017。
// orders dates fields are required and must be in current year
$(".order-dates").each(function (item) {
$(this).rules("add", {
required: true,
date: true
});
});
我想张贴图片,文字和应用程序链接与项目。我正在使用下面的this.But代码,它不起作用。它只允许url和图像共享。但不是文字
NSString *textToShare = @"Look at this awesome website for aspiring iOS Developers!";
NSString *text = @"How to add Facebook and Twitter sharing to an iOS app";
NSURL *url = [NSURL URLWithString:@"http://ro
有一个date字段用于users.birth_date。
此字段包含日期,例如,Mon, 18 Dec 1989。如何在当前年份中考虑此日期,例如,Mon, 18 Dec 2021
我这样做是为了知道一周的确切日期(1-星期一,2-星期二,.)在今年。
要从users.birth_date字段中查找一周中的日期,我执行以下操作:
extract(dow from users.birth_date::timestamp) IN (1,2,3)
如何转换日期来确定用户的生日是当前年份的哪一天?