TurboGears - เลขหน้า
TurboGears มีมัณฑนากรที่สะดวกเรียกว่า paginate () เพื่อแบ่งเอาต์พุตในหน้าต่างๆ มัณฑนากรนี้รวมกับมัณฑนากร expose () มัณฑนากร @Paginate () ใช้วัตถุพจนานุกรมของผลลัพธ์เคียวรีเป็นอาร์กิวเมนต์ นอกจากนี้จำนวนระเบียนต่อหน้าจะถูกกำหนดโดยค่าของแอตทริบิวต์ items_per_page ตรวจสอบให้แน่ใจว่าคุณนำเข้าฟังก์ชันเลขหน้าจาก tg.decorators ไปยังโค้ดของคุณ
Rewrite listrec () ฟังก์ชั่นใน root.py ดังนี้ -
from tg.decorators import paginate
class RootController(BaseController):
@expose ("hello.templates.studentlist")
@paginate("entries", items_per_page = 3)
def listrec(self):
entries = DBSession.query(student).all()
return dict(entries = entries)
รายการต่อหน้ากำหนดให้เป็นสาม
ในเทมเพลต studentlist.html การนำทางของเพจถูกเปิดใช้งานโดยการเพิ่ม tmpl_context.paginators.entries.pager () ด้านล่าง py: สำหรับคำสั่ง รหัสสำหรับเทมเพลตนี้ควรเป็นดังนี้ -
<html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:py = "http://genshi.edgewall.org/">
<head>
<link rel = "stylesheet" type = "text/css" media = "screen"
href = "${tg.url('/css/style.css')}" />
<title>Welcome to TurboGears</title>
</head>
<body>
<h1>Welcome to TurboGears</h1>
<py:with vars = "flash = tg.flash_obj.render('flash', use_js = False)">
<div py:if = "flash" py:replace = "Markup(flash)" />
</py:with>
<h2>Current Entries</h2>
<table border = '1'>
<thead>
<tr>
<th>Name</th>
<th>City</th>
<th>Address</th>
<th>Pincode</th>
</tr>
</thead>
<tbody>
<py:for each = "entry in entries">
<tr>
<td>${entry.name}</td>
<td>${entry.city}</td>
<td>${entry.address}</td>
<td>${entry.pincode}</td>
</tr>
</py:for>
<div>${tmpl_context.paginators.entries.pager()}</div>
</tbody>
</table>
</body>
</html>
ป้อน http://localhost:8080/listrecในเบราว์เซอร์ หน้าแรกของระเบียนในตารางจะปรากฏขึ้น ด้านบนของตารางนี้ยังเห็นลิงก์ไปยังหมายเลขหน้า
วิธีเพิ่ม Pagination Support ใน Datagrid
นอกจากนี้ยังสามารถเพิ่มการรองรับการแบ่งหน้าให้กับดาต้ากริด ในตัวอย่างต่อไปนี้ดาต้ากริดแบบแบ่งหน้าถูกออกแบบมาเพื่อแสดงปุ่มการดำเนินการ เพื่อเปิดใช้งานปุ่มการดำเนินการวัตถุดาต้ากริดถูกสร้างขึ้นด้วยรหัสต่อไปนี้ -
student_grid = DataGrid(fields = [('Name', 'name'),('City', 'city'),
('Address','address'), ('PINCODE', 'pincode'),
('Action', lambda obj:genshi.Markup('<a
href = "%s">Edit</a>' % url('/edit',
params = dict(name = obj.name)))) ])
ที่นี่ปุ่มการดำเนินการเชื่อมโยงกับพารามิเตอร์ชื่อของแต่ละแถวในตารางข้อมูล
เขียน showgrid() ฟังก์ชันดังต่อไปนี้ -
@expose('hello.templates.grid')
@paginate("data", items_per_page = 3)
def showgrid(self):
data = DBSession.query(student).all()
return dict(page = 'grid', grid = student_grid, data = data)
เบราว์เซอร์แสดงดาต้ากริดแบบแบ่งหน้าดังนี้ -
เมื่อคลิกปุ่มแก้ไขในแถวที่สามระบบจะเปลี่ยนเส้นทางไปยัง URL ต่อไปนี้ http://localhost:8080/edit?name=Rajesh+Patil