如何重新格式化 Backbone 模型项
我的骨干集合毫无问题地获取其模型。
该模型以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日期美化是演示级别的活动,不应在模型中完成。将格式化逻辑直接添加到模板中和/或最好创建一个格式化助手,您可以从任何模板调用该助手以漂亮且一致地格式化日期。
有很多美化库。这是一个: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