如何将 Luxon DateTime 对象转换为日期

How to transform a Luxon DateTme object to a date

我正在使用 Material-UI 选择器库构建 DatePicker React,并使用 Luxon 作为适配器。 当我更改日历日期时,我得到一个带有 DateTime 的对象,如下所示:

我使用的 DatePicker 代码:

<MuiPickersUtilsProvider utils={LuxonUtils}>
              <DatePicker
                className={classes.input}
                disableToolbar
                variant="inline"
                label="Date"
                format="cccc, LLLL dd"
                helperText=""
                value={date}
                margin="normal"
                onChange={newDate => {
                  handleDateOnChange({ newDate });
                  setDate(newDate);
                }}
                inputVariant="filled"
                fullWidth
                minDate={new Date()}
              />
            </MuiPickersUtilsProvider>

'on change 返回我在屏幕截图中共享的 OBJ,我想得到的是日期。

我正在 handleDateOnChange 中做一个 console.log(newDate),但里面没有更多内容,所以我不分享它。 console.log() 的结果就是您在上面看到的结果。

您可以简单地使用 toJSDate()

Returns a Javascript Date equivalent to this DateTime.

const DateTime = luxon.DateTime;
const dt = DateTime.local();
console.log(dt);
console.log(dt.toJSDate());
<script src="https://cdn.jsdelivr.net/npm/luxon@2.3.0/build/global/luxon.min.js"></script>