jQuery FullCalendar 日期存储问题 (RFC-822)

发布于 2024-11-15 02:50:14 字数 226 浏览 5 评论 0原文

有没有办法将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪是无色的血 2024-11-22 02:50:14

您可以根据需要格式化日期并将其发送到数据库。例如,如果您只有全天事件,您可以添加日期原型:

    Date.prototype.toYMD = function() {
       var year, month, day;
       year = String(this.getFullYear());
       month = String(this.getMonth() + 1);
       if (month.length == 1) {
           month = "0" + month;
       }
       day = String(this.getDate());
       if (day.length == 1) {
           day = "0" + day;
       }
       return year + "-" + month + "-" + day;
    };

您可以使用以下方法将日期转换为 MySQL 格式的日期:

    var strID = j.toYMD();
    alert("strID: "+strID);

如果您需要小时、分钟和秒,您可以扩展上面的示例。
欢呼克里斯

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:

    Date.prototype.toYMD = function() {
       var year, month, day;
       year = String(this.getFullYear());
       month = String(this.getMonth() + 1);
       if (month.length == 1) {
           month = "0" + month;
       }
       day = String(this.getDate());
       if (day.length == 1) {
           day = "0" + day;
       }
       return year + "-" + month + "-" + day;
    };

you can convert your date to MySQL-formatted one using:

    var strID = j.toYMD();
    alert("strID: "+strID);

If you need hour, minutes and secs you can extend the above example.
cheers Kris

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文