在 JavaScript 中获取年度周数
-
使用
getFullYear()
和getDay()
函数以及new Date()
的对象来获取当前日期的周数 -
使用
DateTime
数据结构及其来自 Luxon 的weekNumber
属性来获取当年的当前周数
我们将介绍一种在 JavaScript 中查找当前周数的方法,创建 new Date()
构造函数的对象以及类似 getFullYear()
和 getDay()
的函数。此方法将查找一年中的总天数并查找周数。我们将在此方法中使用 Math
对象的函数,如 floor()
和 ceil()
。
本文还将介绍另一种使用 JavaScript 包装器 Luxon 在 JavaScript 中获取当前周数的方法。Luxon 是一个 JavaScript 日期和时间库。我们将使用该库中的 DateTime
数据结构和 weekNumber
属性。我们还将在 DataTime
数据结构中使用 now
函数。
我们还将演示一种在 PHP 中使用 define()
函数声明全局变量的方法。这个方法是在 PHP 中声明一个常量全局变量的一种方式。以后不能更改变量的值。
使用 getFullYear()
和 getDay()
函数以及 new Date()
的对象来获取当前日期的周数
此方法使用 new Date()
构造函数及其对象以及 getFullYear()
和 getDay()
等函数来获取一年中的当前周数。Date
对象返回当前日期。getDay()
函数以整数值查找星期几。我们可以创建 Date()
构造函数的对象来获取当前日期。该对象调用函数 getFullYear()
来获取当前年份的开始。我们可以通过将天数差除以一天中的总毫秒数来找到从一天开始到当前时间的总天数。我们可以使用 Math
对象的 floor()
函数对值进行四舍五入以获得整数。该方法最终计算出一年中的周数,将总天数除以七。
例如,创建一个 Date
对象 currentdate
。创建另一个变量 oneJan
,以存储当年的第一天。为此,在变量上创建一个新的 Date
对象,并使用 currentdate
对象作为 Date()
构造函数的第一个参数调用 getFullYear()
函数。使用 0
和 1
作为第二个和第三个参数。从 currentdate
中减去变量 oneJan
,然后除以 86400000
。将操作包裹在 Math.floor()
函数中,并将其分配给变量 numberOfDays
。使用 currentdate
对象调用 getDay()
函数,并向其添加变量 numberOfDays
和值 1
。用 Math.ceil()
函数包装这个操作并将结果存储在 result
变量中。使用字符串插值在控制台中记录变量以及 currentdate
变量。
下面的示例查找当前日期,然后查找当前年份的第一天。第二行的参数 0
和 1
代表当年的第一个月和第一天。从 currentdate
中减去 oneJan
给出以毫秒为单位的值,因此一天中的总毫秒数为 86400000
除以差值。getDay()
函数以整数形式返回以 0
开头的日期,因此我们添加了 1
。因此,计算当前周数。
示例代码:
currentdate = new Date();
var oneJan = new Date(currentdate.getFullYear(),0,1);
var numberOfDays = Math.floor((currentdate - oneJan) / (24 * 60 * 60 * 1000));
var result = Math.ceil(( currentdate.getDay() + 1 + numberOfDays) / 7);
console.log(`The week number of the current date (${currentdate}) is ${result}.`);
输出:
The week number of the current date (Tue May 25 2021 16:55:53 GMT+0545 (Nepal Time)) is 21.
使用 DateTime
数据结构及其来自 Luxon 的 weekNumber
属性来获取当年的当前周数
我们可以使用 Luxon 库通过 DateTime
数据结构和 weeknumber
属性获取一年中的当前周数。DateTime
由时间戳、时区和配置属性组成。与 now
函数一起使用的 DateTime
将返回系统时区中当前时刻的日期和时间。weekNumber
属性访问当前年份的周数。我们可以使用 toISO()
函数将 DateTime
转换为 ISO 格式。
从第一行的 luxon/src/datetime.js
导入 DateTime
对象。不要忘记下载 Luxon 源代码。将源代码保存在 JavaScript 文件中,并确保在 HTML 部分中使用 script
标签包含该文件。使用 DateTime
对象调用 now()
函数,然后调用 weekNumber
属性。将其分配给变量日期
。然后,在控制台中记录变量 date
。请查阅 Luxon 文档 以了解有关 DateTime
对象和属性的更多信息。
代码示例:
import DateTime from 'luxon/src/datetime.js'
const date = DateTime.now().weekNumber
console.log(`The current week number is ${date}`)
输出:
The current week number is 21
Subodh is a proactive software engineer, specialized in fintech industry and a writer who loves to express his software development learnings and set of skills through blogs and articles.
LinkedIn