通过 Dwoo 连接到数据库

发布于 2024-10-12 00:55:35 字数 134 浏览 2 评论 0原文

我刚刚开始学习模板系统 Dwoo,到目前为止,基础知识正在发挥作用(关于数组)。

但是,我在尝试让页面显示数据库中的内容时遇到问题。 官方文档对此的介绍很少,谷歌也是如此。

您使用 Dwoo 的体验如何?这里有人尝试过吗?

I've just started learning the templating system Dwoo, and so far the basics are working (in regard to arrays).

However, I'm having trouble trying to get my pages to display content from a database.
The official documentation has very little on it, as does Google.

What's your experience with Dwoo been like and has anyone on here tried this?

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

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

发布评论

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

评论(1

柒七 2024-10-19 00:55:35

Dwoo 是一个模板引擎,您不应该直接在其中进行数据库查询,它抵消了使用模板系统的要点之一。

您应该在 PHP 中进行数据库查询:

$stmt = $pdo->prepare('SELECT * FROM table');
$stmt->execute();
$results = $pdo->fetchAll(PDO::FETCH_ASSOC);

将其分配给您的模板:

$dwoo = new Dwoo;
$dwoo->display('template.tpl', array('results'=>$results));

然后在模板中使用它:

{foreach from=$results item=result}
   do stuff
{/foreach}

Dwoo is a templating engine, you shouldn't make database queries directly in it, it nullifies one of the main point of using a templating system.

You should make your database query in PHP:

$stmt = $pdo->prepare('SELECT * FROM table');
$stmt->execute();
$results = $pdo->fetchAll(PDO::FETCH_ASSOC);

Assign it to your template:

$dwoo = new Dwoo;
$dwoo->display('template.tpl', array('results'=>$results));

Then use it in the template:

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