显示了一些事件,但其他一些事件不在 FullCalendar 中

Some events are displayed but some others not in FullCalendar

我在尝试在 FullCalendar 上显示事件时遇到问题。有些事件会显示,有些则不会。

我通过 JSON 填充 FC,直到现在即使使用分页也能很好地检索所选月份的事件。

...
events: {
    url: '/getEvents',
    method: 'GET',
    failure: function(error) {
        console.log(error);
        alerta("Error", "Ups...", "red");
    },
},
...

但现在我正尝试从存储在数据库中的其他内容中添加更多事件,尽管以相同的方式构建它们,但它们并未显示在日历上。

我这样构造事件(我已经清理了代码):

rows = connection.execute("SELECT...........")
events = []
for row in rows:
    event = {"id": row['id'], "title": row['title'], "start": row['start'], "end": row['end'], "allDay": row['allDay'], "url": row['url'], "color": row['color'], "extendedProps": {"company": row['company'], "state": fila['state']}}
    if row['groupId'] is not None:
        event['groupId'] = str(row['groupId'])
   events.append(event)

现在,在程序的其他部分,我以类似的方式创建事件:

more_rows = connection.execute("SELECT....")
more_events = []
for row in more_rows:
    event = {"id": row['id'], "title": row['title'], "start": row['start'], "end": row['end'], "allDay": 1, "url": "", "color": row['color'], "extendedProps": {"company": row['company'], "description": row['description'], "type": row['type'], "tecnology": row['tecnology'], "state": row['state']}}
    more_events.append(event)

它们一起发送到浏览器:

...
events.extend(more_events)
return jsonify(events), 200
...

jsonify(events) 将此 JSON 发送到浏览器(我在 python 代码上使用双引号,但 jsonify 将其替换为单引号):

[{'allDay': 1, 'color': 'blue', 'end': '2019-10-24T00:00:00.000Z', 'extendedProps': {'company': 'Company test', 'state': 'Active'}, 'groupId': '48', 'id': 27, 'start': '2019-10-23T00:00:00.000Z', 'title': 'A title', 'url': ''}, 
{'allDay': 1, 'color': 'blue', 'end': '2019-10-11T00:00:00.00.000Z', 'extendedProps': {'company': 'Company test', 'description': 'oapisdvañklsjdhalksjdflaksjdf', 'state': 'Active', 'tecnology': 'javascript+html', 'type': 'Cool'}, 'id': 74, 'start': '2019-10-07T00:00:00.00.000Z', 'title': 'owqsakjdflh', 'url': ''}, 
{'allDay': 1, 'color': 'blue', 'end': '2019-10-23T00:00:00.00.000Z', 'extendedProps': {'company': 'Company test', 'description': 'sdgsdfgwertwertwg', 'state': 'Active', 'tecnology': 'c', 'type': 'Cool'}, 'id': 75, 'start': '2019-10-21T00:00:00.00.000Z', 'title': '1eqwrwqer', 'url': ''}, 
{'allDay': 1, 'color': 'blue', 'end': '2019-11-07T00:00:00.00.000Z', 'extendedProps': {'company': 'Company test', 'description': 'asdfafasdfasdfasdf', 'state': 'Active', 'tecnology': 'java', 'type': 'Cool'}, 'id': 76, 'start': '2019-11-04T00:00:00.00.000Z', 'title': 'Bla bla bla', 'url': ''}]

问题是...第一个元素作为事件打印,但 JSON 上的其余元素未打印。

我看不出我的错误在哪里或哪里做错了。

此致。

我发现了问题(好吧,实际上是一位同事),它就在这里:

第一个元素:'end':'2019-10-24T00:00:00.000Z' || 'start':'2019-10-23T00:00:00.000Z'

其他元素:'end': '2019-10-23T00:00:00.00.000Z' || 'start': '2019-10-21T00:00:00.00.000Z'

事情是:2019-10-24T00:00:00.000Z 和 2019-10-23T00:00:00.00.000Z

我用这个 SQL 来比较日期(它们不存储在 ISO 8601 上):

SELECT id, ....., strftime('%Y-%m-%dT%H:%M:%fZ', start_date) AS start, strftime('%Y-%m-%dT%H:%M:%fZ', end_date) AS end, ...... 
FROM table 
WHERE state = 'Active' AND start > '....' AND end < '....'

我的问题是假设 SQlite strftime 它等于 PYTHON strftime,但是不。

我正在使用这个 (Python): '%Y-%m-%dT%H:%M:%S.%fZ'这个(SQlite)的:'%Y-%m-%dT%H:%M:%fZ'

Python Doc

%S Second as a zero-padded decimal number.
%f Microsecond as a decimal number, zero-padded on the left.

Sqlite Doc

%S seconds: 00-59
%f fractional seconds: SS.SSS

所以要小心,不要混淆 python 格式和 sqlite 格式

此致!