jQuery FullCalendar 日期存储问题 (RFC-822)
有没有办法将 FullCalendar 以日期或日期时间格式或其他格式存储到数据库中的日期时间格式而不是 varchar,这样我就可以按日期 SQL 调用进行排序?
目前它被存储为 Mon Jun 13 2011 12:30:00 GMT-0400 (EDT)
,无法排序。
Is there a way to have the date that FullCalendar stores into the DB in a date or datetime format, or some other time format instead of varchar, so I can do a sort by date SQL call?
Right now it's being stored as Mon Jun 13 2011 12:30:00 GMT-0400 (EDT)
which is impossible to sort.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以根据需要格式化日期并将其发送到数据库。例如,如果您只有全天事件,您可以添加日期原型:
您可以使用以下方法将日期转换为 MySQL 格式的日期:
如果您需要小时、分钟和秒,您可以扩展上面的示例。
欢呼克里斯
You can format the date as you wish and send it to DB. For example if you have only whole-day-events you can add a date prototype:
you can convert your date to MySQL-formatted one using:
If you need hour, minutes and secs you can extend the above example.
cheers Kris