date.md 7.1 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Date

创建一个 Date 实例,该实例呈现时间中的某个时刻。Date 对象则基于 Unix Time Stamp,即自 1970 年 1 月 1 日(UTC)起经过的毫秒数。

## 语法

```ts
new Date();
new Date(value);
new Date(year, monthIndex [, day [, hours [, minutes [, seconds [, milliseconds]]]]]);
```

- 如果没有输入任何参数,则 Date 的构造器会依据系统设置的当前时间来创建一个 Date 对象。
- 如果提供了至少两个参数,其余的参数均会默认设置为 1(如果没有指定 day 参数)或者 0(如果没有指定 day 以外的参数)。
- uts 的时间由世界标准时间(UTC)1970 年 1 月 1 日开始,用毫秒计时,一天由 86,400,000 毫秒组成。Date 对象的范围是 -100,000,000 天至 100,000,000 天(等效的毫秒值)。

杜庆泉's avatar
杜庆泉 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29

目前支持的字符串格式有:

+ Dec 25, 1995
+ 01 Jan 1970 00:00:00 GMT
+ 1995-12-17T03:24:00
+ December 17, 1995 03:24:00
+ December 17, 95 03:24:00
+ March 13, 08 04:20
+ July 20, 69 20:17:40 GMT+00:00
+ December 31, 1975, 23:15:30 GMT+11:00
+ 2023/08/13 12:35:54
+ 1995-02-14
杜庆泉's avatar
杜庆泉 已提交
30 31 32 33 34 35 36
+ 2024-01-09 22:00:00
+ 2024/5/1 (HBuilder X 4.18 Android/Web 支持)
+ 2024/5/1 00:00:00 (HBuilder X 4.18 Android/Web 支持)
+ 2024-05-01 00:00 (HBuilder X 4.18 Android/Web 支持)
+ 2024/05/01 00:00 (HBuilder X 4.18 Android/Web 支持)
+ 2024-5-1 00:00 (HBuilder X 4.18 Android/Web 支持)
+ 2024/5/1 00:00 (HBuilder X 4.18 Android/Web 支持)
杜庆泉's avatar
杜庆泉 已提交
37

杜庆泉's avatar
杜庆泉 已提交
38 39 40 41 42 43 44 45 46 47
如果传入Date构造器的参数字符串不合法,在web平台会抛出 "Invalid Date" 异常

```ts
// Invalid Date
new Date("Hello")
```

在Android/IOS平台,会转换为程序执行时的时间

```ts
48
// ‍当前日期:[Date]‍ Fri May 31 2024 17:18:02 GMT+0800
杜庆泉's avatar
杜庆泉 已提交
49 50 51
new Date("Hello")
```

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
### Constructor()

<!-- UTSJSON.Date.Constructor.description -->

<!-- UTSJSON.Date.Constructor.param -->

<!-- UTSJSON.Date.Constructor.returnValue -->

<!-- UTSJSON.Date.Constructor.compatibility -->

<!-- UTSJSON.Date.Constructor.tutorial -->

### Constructor(value)_1

<!-- UTSJSON.Date.Constructor_1.description -->

<!-- UTSJSON.Date.Constructor_1.param -->

<!-- UTSJSON.Date.Constructor_1.returnValue -->

<!-- UTSJSON.Date.Constructor_1.compatibility -->

<!-- UTSJSON.Date.Constructor_1.tutorial -->

### Constructor(year, monthIndex, date?, hours?, minutes?, seconds?, ms?)_2

<!-- UTSJSON.Date.Constructor_2.description -->

<!-- UTSJSON.Date.Constructor_2.param -->

<!-- UTSJSON.Date.Constructor_2.returnValue -->

<!-- UTSJSON.Date.Constructor_2.compatibility -->

<!-- UTSJSON.Date.Constructor_2.tutorial -->

杜庆泉's avatar
杜庆泉 已提交
88

D
DCloud_LXH 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
## 静态方法

### now()

<!-- UTSJSON.Date.now.description -->

<!-- UTSJSON.Date.now.param -->

<!-- UTSJSON.Date.now.returnValue -->

```ts
// this example takes 2 seconds to run
const start = Date.now()
console.log('starting timer...')
// expected output: starting timer...
setTimeout(() => {
  const millis = Date.now() - start
  console.log(`seconds elapsed = ${Math.floor(millis / 1000)}`)
  // expected output: seconds elapsed = 2
}, 2000)
```
<!-- UTSJSON.Date.now.compatibility -->

## 实例方法


### toString()

<!-- UTSJSON.Date.toString.description -->

<!-- UTSJSON.Date.toString.param -->

<!-- UTSJSON.Date.toString.returnValue -->

<!-- UTSJSON.Date.toString.compatibility -->

### toDateString()

<!-- UTSJSON.Date.toDateString.description -->

<!-- UTSJSON.Date.toDateString.param -->

<!-- UTSJSON.Date.toDateString.returnValue -->

<!-- UTSJSON.Date.toDateString.compatibility -->

杜庆泉's avatar
杜庆泉 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
### toISOString()

<!-- UTSJSON.Date.toISOString.description -->

<!-- UTSJSON.Date.toISOString.param -->

<!-- UTSJSON.Date.toISOString.returnValue -->

<!-- UTSJSON.Date.toISOString.compatibility -->

### toJSON()

<!-- UTSJSON.Date.toJSON.description -->

<!-- UTSJSON.Date.toJSON.param -->

<!-- UTSJSON.Date.toJSON.returnValue -->

<!-- UTSJSON.Date.toJSON.compatibility -->

D
DCloud_LXH 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
### getTime()

<!-- UTSJSON.Date.getTime.description -->

<!-- UTSJSON.Date.getTime.param -->

<!-- UTSJSON.Date.getTime.returnValue -->

<!-- UTSJSON.Date.getTime.compatibility -->

### getFullYear()

<!-- UTSJSON.Date.getFullYear.description -->

<!-- UTSJSON.Date.getFullYear.param -->

<!-- UTSJSON.Date.getFullYear.returnValue -->

<!-- UTSJSON.Date.getFullYear.compatibility -->

### getMonth()

<!-- UTSJSON.Date.getMonth.description -->

<!-- UTSJSON.Date.getMonth.param -->

<!-- UTSJSON.Date.getMonth.returnValue -->

<!-- UTSJSON.Date.getMonth.compatibility -->

### getDate()

<!-- UTSJSON.Date.getDate.description -->

<!-- UTSJSON.Date.getDate.param -->

<!-- UTSJSON.Date.getDate.returnValue -->

<!-- UTSJSON.Date.getDate.compatibility -->

### getDay()

<!-- UTSJSON.Date.getDay.description -->

<!-- UTSJSON.Date.getDay.param -->

<!-- UTSJSON.Date.getDay.returnValue -->

<!-- UTSJSON.Date.getDay.compatibility -->

### getHours()

<!-- UTSJSON.Date.getHours.description -->

<!-- UTSJSON.Date.getHours.param -->

<!-- UTSJSON.Date.getHours.returnValue -->

<!-- UTSJSON.Date.getHours.compatibility -->

### getMinutes()

<!-- UTSJSON.Date.getMinutes.description -->

<!-- UTSJSON.Date.getMinutes.param -->

<!-- UTSJSON.Date.getMinutes.returnValue -->

<!-- UTSJSON.Date.getMinutes.compatibility -->

### getSeconds()

<!-- UTSJSON.Date.getSeconds.description -->

<!-- UTSJSON.Date.getSeconds.param -->

<!-- UTSJSON.Date.getSeconds.returnValue -->

<!-- UTSJSON.Date.getSeconds.compatibility -->

### setTime(time)

<!-- UTSJSON.Date.setTime.description -->

<!-- UTSJSON.Date.setTime.param -->

<!-- UTSJSON.Date.setTime.returnValue -->

<!-- UTSJSON.Date.setTime.compatibility -->

### setMilliseconds(ms)

<!-- UTSJSON.Date.setMilliseconds.description -->

<!-- UTSJSON.Date.setMilliseconds.param -->

<!-- UTSJSON.Date.setMilliseconds.returnValue -->

<!-- UTSJSON.Date.setMilliseconds.compatibility -->

### setSeconds(sec)

<!-- UTSJSON.Date.setSeconds.description -->

<!-- UTSJSON.Date.setSeconds.param -->

<!-- UTSJSON.Date.setSeconds.returnValue -->

<!-- UTSJSON.Date.setSeconds.compatibility -->

### setMinutes(min)

<!-- UTSJSON.Date.setMinutes.description -->

<!-- UTSJSON.Date.setMinutes.param -->

<!-- UTSJSON.Date.setMinutes.returnValue -->

<!-- UTSJSON.Date.setMinutes.compatibility -->

### setHours(hours)

<!-- UTSJSON.Date.setHours.description -->

<!-- UTSJSON.Date.setHours.param -->

<!-- UTSJSON.Date.setHours.returnValue -->

<!-- UTSJSON.Date.setHours.compatibility -->

### setDate(date)

<!-- UTSJSON.Date.setDate.description -->

<!-- UTSJSON.Date.setDate.param -->

<!-- UTSJSON.Date.setDate.returnValue -->

<!-- UTSJSON.Date.setDate.compatibility -->

### setMonth(month)

<!-- UTSJSON.Date.setMonth.description -->

<!-- UTSJSON.Date.setMonth.param -->

<!-- UTSJSON.Date.setMonth.returnValue -->

<!-- UTSJSON.Date.setMonth.compatibility -->

### setFullYear(year)

各个平台在处理时间戳为负数时会有细节差异,尽量避免 参数小于1970的情况

<!-- UTSJSON.Date.setFullYear.description -->

<!-- UTSJSON.Date.setFullYear.param -->

<!-- UTSJSON.Date.setFullYear.returnValue -->

<!-- UTSJSON.Date.setFullYear.compatibility -->

lizhongyi_'s avatar
lizhongyi_ 已提交
317 318 319 320 321 322 323 324 325

### parse(s)

<!-- UTSJSON.Date.parse.description -->

<!-- UTSJSON.Date.parse.param -->

<!-- UTSJSON.Date.parse.returnValue -->

杜庆泉's avatar
杜庆泉 已提交
326
<!-- UTSJSON.Date.parse.compatibility -->
杜庆泉's avatar
杜庆泉 已提交
327 328

<!-- UTSJSON.Date.tutorial -->