我一直在尝试Twig,它适用于我的小网站。
这是使用的教程:
http://devzone.zend.com/article/13633
但是,我已经在网上看过,找不到任何可以分页的内容。
这是我的代码:
<html>
<head>
<style type="text/css">
table {
border-collapse: collapse;
}
tr.heading {
font-weight: bolder;
}
td {
border: 0.5px solid black;
padding: 0 0.5em;
}
</style>
</head>
<body>
<h2>Automobiles</h2>
<table>
<tr class="heading">
<td>Vehicle</td>
<td>Model</td>
<td>Price</td>
</tr>
{% for d in data %}
<tr>
<td>{{ d.manufacturer|escape }}</td>
<td>{{ d.model|escape }}</td>
<td>{{ d.price|raw }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>
这是PHP编码:
<?php
// include and register Twig auto-loader
include 'Twig/Autoloader.php';
Twig_Autoloader::register();
// attempt a connection
try {
$dbh = new PDO('mysql:dbname=world;host=localhost', 'root', 'mypass');
} catch (PDOException $e) {
echo "Error: Could not connect. " . $e->getMessage();
}
// set error mode
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// attempt some queries
try {
// execute SELECT query
// store each row as an object
$sql = "SELECT manufacturer, model, price FROM automobiles";
$sth = $dbh->query($sql);
while ($row = $sth->fetchObject()) {
$data[] = $row;
}
// close connection, clean up
unset($dbh);
// define template directory location
$loader = new Twig_Loader_Filesystem('templates');
// initialize Twig environment
$twig = new Twig_Environment($loader);
// load template
$template = $twig->loadTemplate('automobiles.tpl');
// set template variables
// render template
echo $template->render(array (
'data' => $data
));
} catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
我需要做些什么才能在Twig中对结果进行分页? 否则我的网站运作得非常好!
谢谢,JC答案 0 :(得分:5)
互联网上已有一些例子。你可以参考
答案 1 :(得分:3)
由于Twig只是一个模板引擎,因此没有任何内容(至少在核心中)添加分页。您必须自己拆分内容并对其进行分页(例如使用JavaScript)。请注意,对于您当前的实施,完整内容会插入到模板中,您只会隐藏/显示其中的某些部分。
然而,首选的方法是在您的模型(您进行查询的部分)中也包括分页,以仅加载当前向用户显示的这些记录。这显然超出了模板引擎的范围。