- TurboGears 教程
- TurboGears - 主页
- TurboGears - 概述
- TurboGears - 环境
- TurboGears - 第一个程序
- TurboGears - 依赖关系
- TurboGears - 服务模板
- TurboGears - HTTP 方法
- Genshi模板语言
- TurboGears - 包括
- TurboGears - JSON 渲染
- TurboGears - URL 层次结构
- TurboGears - Toscawidgets 表格
- TurboGears - 验证
- TurboGears - 闪讯
- TurboGears - Cookie 和会话
- TurboGears - 缓存
- TurboGears - Sqlalchemy
- TurboGears - 创建模型
- TurboGears - 原油操作
- TurboGears - 数据网格
- TurboGears - 分页
- TurboGears - 管理员访问
- 授权与认证
- TurboGears - 使用 MongoDB
- TurboGears - 脚手架
- TurboGears - 挂钩
- TurboGears - 编写扩展
- TurboGears - 可插拔应用
- TurboGears - 安静的应用程序
- TurboGears - 部署
- TurboGears 有用资源
- TurboGears - 快速指南
- TurboGears - 有用的资源
- TurboGears - 讨论
TurboGears - URL 层次结构
有时,Web 应用程序可能需要具有多个级别的 URL 结构。TurboGears 可以遍历对象层次结构以找到可以处理您的请求的适当方法。
带有变速箱的“快速启动”项目在项目的 lib 文件夹中有一个 BaseController 类。它以“Hello/hello/lib/base.py”形式提供。它作为所有子控制器的基类。为了在应用程序中添加一个子级别的URL,设计一个从BaseController派生的名为BlogController的子类。
该 BlogController 有两个控制器函数:index() 和 post()。两者都旨在公开一个模板:blog.html 和 post.html。
注意- 这些模板放在子文件夹中 - templates/blog
class BlogController(BaseController): @expose('hello.templates.blog.blog') def index(self): return {} @expose('hello.templates.blog.post') def post(self): from datetime import date now = date.today().strftime("%d-%m-%y") return {'date':now}
现在在 RootController 类(在 root.py 中)中声明此类的一个对象,如下所示 -
class RootController(BaseController): blog = BlogController()
顶级 URL 的其他控制器函数将像之前一样存在于此类中。
当输入URL http://localhost:8080/blog/时,它将被映射到 BlogController 类中的 index() 控制器函数。同样,http://localhost:8080/blog/post将调用 post() 函数。
blog.html 和 post.html 的代码如下 -
Blog.html <html> <body> <h2>My Blog</h2> </body> </html> post.html <html> <body> <h2>My new post dated $date</h2> </body> </html>
当输入URL http://localhost:8080/blog/时,它将产生以下输出 -
当输入URL http://localhost:8080/blog/post时,它将产生以下输出 -