何将日期从mysql转换为gijgo datepicker

时间:2019-04-15 13:05:10

标签: laravel-5 datepicker date-format

在我的jQuery v3 / Bootstrap v4.1.2应用程序中,我使用gijgo.com/datepicker,我需要在datepicker中显示一些默认值 从日期数据库中的选项从mysql数据库中的“ 2019-04-09”到“ 2017年12月14日”。

$('#check_in_datepicker').datepicker({    // bootstrap 4/ fontawesome compatible datepicker from https://gijgo.com/datepicker
    uiLibrary: 'bootstrap4',
    iconsLibrary: 'fontawesome',
    showOtherMonths: true,
    selectOtherMonths: true,
    format: 'dd mmmm, yyyy'
});

哪种方法合适呢?

谢谢!

1 个答案:

答案 0 :(得分:0)

我在下一个定义中找到了决定

<date-picker
        v-model="this.hostelExtraDetailsArray.reception_hours_start"
        type="time"
        :time-picker-options="timePickerOptions"
        id="cbx_extra_details_reception_hours_start"
        :lang="'en'"
        :type="'time'"
        :format="'hh:mm'"
        :header="'HTRF'"
        :placeholder="'Select time from picker'"
></date-picker>

但是从db字段接收时间时,我将其与一些虚拟日期融合在一起:

   this.hostelExtraDetailsArray.reception_hours_start =
       this.stringIntoDatetime("2019-04-17 " + response.data.hostelExtraDetailsArray.reception_hours_start)
   ...
   stringIntoDatetime(string_datetime) {
       return moment.utc(string_datetime);
   }