如何重新格式化 Backbone 模型项

发布于 2024-12-26 01:54:53 字数 98 浏览 0 评论 0原文

我的骨干集合毫无问题地获取其模型。

该模型以 sql 日期格式返回 {{=calldate}}。我应该如何从模型中重新格式化日期,以便视图呈现的模板中的日期可读?谢谢

My backbone collection fetches its models without issue.

The model returns {{=calldate}} in the sql date format. How should I reformat the date from within the model so that the date is readable in the template as rendered by the view? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

久随 2025-01-02 01:54:53

日期美化是演示级别的活动,不应在模型中完成。将格式化逻辑直接添加到模板中和/或最好创建一个格式化助手,您可以从任何模板调用该助手以漂亮且一致地格式化日期。

有很多美化库。这是一个:http://blog.stevenlevithan.com/archives/date-time-format

Date prettification is a presentation-level activity and shouldn't be done in the model. Either add the formatting logic directly to your template and/or, preferably, create a formatting helper that you can call from any template to format dates prettily and consistently.

There are many prettification libraries. Here's one: http://blog.stevenlevithan.com/archives/date-time-format

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