我的重复数据字符串有什么问题?
我正在尝试创建重复规则以将时间表导出到 Google 日历
,但我做错了什么。
该字符串如下:
'DTSTART;TZID=Europe/London:20100822T080000\r\nRRULE:FREQ=WEEKLY;COUNT=5;BYDAY=Mo,Tu,We,Th,Fr;UNTIL=20100827T164500Z\r\nDTEND;TZID=Europe/London:20100822T180000\r\n'
如果您使用 UNTIL
取下部分(这部分是我硬编码用于测试的:;UNTIL=20100827T164500Z
),但使用UNTIL
在那里它不起作用(我需要那个 UNTIL
在那里)。
我正在查看文档 RFC244
5,但我没有找到直到出现什么问题。
感谢您的帮助!
I'm trying to create recurrence rule to export my timetable to Google Calendar
, but I'm doing something wrong.
The string is the following:
'DTSTART;TZID=Europe/London:20100822T080000\r\nRRULE:FREQ=WEEKLY;COUNT=5;BYDAY=Mo,Tu,We,Th,Fr;UNTIL=20100827T164500Z\r\nDTEND;TZID=Europe/London:20100822T180000\r\n'
It is working fine if you will take off the part with UNTIL
(this part which I hard coded for test: ;UNTIL=20100827T164500Z
) but with UNTIL
there it's not working(and I need that UNTIL
to be there).
I was looking to the document RFC244
5 and I don't find what can be wrong with until.
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
COUNT 和 UNTIL 是互斥的。请参阅重复规则定义。
COUNT and UNTIL are mutually exclusive. See Recurrence Rule definition.