0

I'm having an issue where the Date Range Picker plugin (via moment.js) is converting my date format from (MM/DD/YYYY) to the Unix date format.

To recreate the issue, I created a Fiddle. In the Fiddle, click on the date range and the picker will display. In the picker, select a date range and click "apply". When you do this, you will note that the date range format is now in the Unix format.

How do I convert the date format back to 'MM/DD/YYYY' when I click apply?

HTML

 <div id="daterange"><span></span></div>

JQUERY

$(function() {
    var listItem, applyClicked = false,
        start = '10/10/2016',
        end = '12/05/2016';

    function cb(start, end) {
        $('#daterange span').html(start + ' - ' + end);
    }

    //var num = $("#daterange").data("datepicker");
    //cb(moment().subtract(num, 'days'), moment());

    $('#daterange').daterangepicker({
        ranges: {
            'Today': [moment(), moment()],
            'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
            'Last 7 Days': [moment().subtract(6, 'days'), moment()],
            'Last 30 Days': [moment().subtract(29, 'days'), moment()],
            'This Month': [moment().startOf('month'), moment().endOf('month')],
            'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
        },
        locale: {
            format: 'MM/DD/YYYY'
        },
        opens: "left",
        startDate: start,
        endDate: end,
        maxDate: moment().endOf("day"),
        alwaysShowCalendars: true,
        autoUpdateInput: true
    }, cb);

    cb(start, end);

    // Dont close daterangepicker immediately when predefined range selected
    $(".ranges ul li").click(function() {
        listItem = $(this).text();
    });

    $(".range_inputs").click(function() {
        applyClicked = true;
    });

    $('#daterange').on('apply.daterangepicker', function(ev, picker) {
        //var test = moment.unix(startDate).format("MM/DD/YYYY");
        //$('#daterange span').html(test + ' - ' + end);
        if (listItem != "Custom Range" && !applyClicked) {
            picker.show();
            applyClicked = false;
        }
    });
});

Fiddle https://jsfiddle.net/coryspi/oka1noht/

Thanks in advance for your help.

4

3 回答 3

0

只需按时刻包装您的开始和结束值,然后将其格式化为MM/DD/YYYY

function cb(start, end) {
    $('#daterange span').html(moment(start).format('MM/DD/YYYY') + ' - ' + moment(end).format('MM/DD/YYYY'));
}

看看一个工作小提琴:https ://jsfiddle.net/6w2m83qa/

请注意,当您换行时,它会尝试了解您使用的格式。MM/DD/YYYY运行良好,Unix timestamp也是。

如果您的格式不是任何受支持的格式,例如。DD/MM/YYYY,您应该需要指定输入格式。

于 2016-12-06T15:58:10.753 回答
0

用这个替换你的回调函数

function cb(start, end) {
    $('#daterange span').html(moment(start).format('MM/DD/YYYY') + ' - ' + moment(end).format('MM/DD/YYYY'));
}

它只是你必须改变格式。

希望能帮助到你。

于 2016-12-06T15:58:24.410 回答
0

正如您在配置文档中看到的那样,您的cb函数的类型为:

function(startDate, endDate, label) {

它是用户选择新日期时从 daterangepicker 触发的回调函数。

前两个参数是矩对象。

因此,您的功能变为:

function cb(start, end) {
    $('#daterange span').html(start.format('MM/DD/YYYY') + ' - ' + end.format('MM/DD/YYYY'));
}

你可以在 dom ready 中调用它:

cb(moment(start), moment(end));

更新的小提琴

于 2016-12-06T16:06:19.850 回答