当我在完整日历中创建第二个事件时,会创建两个事件

时间:2016-11-04 19:00:40

标签: javascript fullcalendar

如果你创建一个事件,它可以很好地工作,但是当你创建更多事件时,系统会在你现在创建的事件之前创建所有事件。

<div id='wrap'>


<div id="fullCalModalModify" class="modal fade">
<div class="modal-dialog">
    <div class="modal-content">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span> <span class="sr-only">close</span></button>
            <a>Title:</a><input id="modalTitleModify" class="modal-title" autofocus><a>Avec:</a><input id="modalClientModify" class="modal-title">
        </div>

        <div class="modal-footer">
            <button class="alert alert-success" id="btnSave"><a  target="_blank">Save</a></button>  
        </div>
    </div>
</div>

    <div id="calendar"></div>
    <div style='clear:both'></div>
</div>

$(document).ready(function() { 
var title;
var client;
var eventData;
/* initialize the external events------------------------------*/
$('#external-events .fc-event').each(function() {
// store data so the calendar knows to render an event upon drop
$(this).data('event', {
title: $.trim($(this).text()), // use the element's text as the event title
stick: true // maintain when user navigates (see docs on the renderEvent method)
});

    // make the event draggable using jQuery UI
$(this).draggable({
        zIndex: 999,
        revert: true,      // will cause the event to go back to its
        revertDuration: 0  //  original position after the drag
    });
});

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay,listMonth'
    },
    defaultDate: '2016-09-12',
    droppable: true, // this allows things to be dropped onto the calendar
    navLinks: true, // can click day/week names to navigate views
    businessHours: true, // display business hours
    editable: true,
    selectable: true,
    selectHelper: true,
    select: function(start, end) {
        $('#modalTitleModify').val("");
        $('#modalClientModify').val("");
        $('#fullCalModalModify').modal();
        $("#btnSave").click(function() {    
            title = $('#modalTitleModify').val();
            client = $('#modalClientModify').val();
            description = $('#modalDescriptionModify').val();
            if (title) {        
                eventData = {
                    title: title,
                    clientName: client,
                    start: start,
                    end: end
                };
                $('#calendar').fullCalendar('renderEvent', eventData, true); // stick? = true
                $("#fullCalModalModify").modal('hide');
            }
    }); 
    $('#calendar').fullCalendar('unselect');
    },
    loading: function(bool) {
    $('#loading').toggle(bool);
    /*end of section separate windows */
        },         
    });
});

http://jsfiddle.net/prodeinfo/x4dbs8qz/

我不明白为什么,你能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

我认为问题在于,每次调用sqlite3_stmt函数($("#btnSave").click())时,您都会添加新的select事件侦听器。

您可以使用jquery .one(...)函数来解决这个问题。这是一个例子:

select: function(start, end) {....}

It seems to be working