通过 Dwoo 连接到数据库
我刚刚开始学习模板系统 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dwoo 是一个模板引擎,您不应该直接在其中进行数据库查询,它抵消了使用模板系统的要点之一。
您应该在 PHP 中进行数据库查询:
将其分配给您的模板:
然后在模板中使用它:
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:
Assign it to your template:
Then use it in the template: