在 MVC 模式框架中,将 ORM 实体传递到模板中是否可以接受?

发布于 2024-11-02 04:08:12 字数 383 浏览 1 评论 0原文

将 ORM 实体直接传递到模板中是否可以接受?

在假设的 python 框架中,这

def fetch_widgets:
    widgets = widget.fetch("price < 50")
    render_template('widget.html', widgets=widgets)

比这更糟糕吗?

def fetch_widgets:
    widgets = [(w.name, w.price) for w in widget.fetch("price < 50")]
    render_template('widget.html', widgets=widgets)

Is passing ORM entities directly into templates acceptable?

In a hypothetical python framework is this worse

def fetch_widgets:
    widgets = widget.fetch("price < 50")
    render_template('widget.html', widgets=widgets)

than this?

def fetch_widgets:
    widgets = [(w.name, w.price) for w in widget.fetch("price < 50")]
    render_template('widget.html', widgets=widgets)

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

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

发布评论

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

评论(1

揽清风入怀 2024-11-09 04:08:12

如果模板引擎只能检索模型,那么当然可以。当使用模板操作模型时,墙壁就会被打破。

If the template engine is only capable of retrieving models, then sure. It's when templates are used to manipulate models that the walls break down.

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