如何使用 Pyramid 和 Akhet 生成 URL?

发布于 2024-11-14 16:49:27 字数 245 浏览 1 评论 0原文

我正在创建一个 Akhet (Pyramid) Web 应用程序。 如何在 mako 模板中生成给定 Handler/view 的 URL?

我正在寻找 Pylons 的等效项 ${url(controller="users", view="list")

I'm creating an Akhet (Pyramid) web application.
How can one generate in a mako template the URL for a given Handler/view ?

I'm looking for the equivalent of Pylons' ${url(controller="users", view="list")

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

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

发布评论

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

评论(2

醉态萌生 2024-11-21 16:49:27

您需要使用route_url。它可以在 request.route_url 的模板中找到。

<a href="${request.route_url('import')}">Import</a>

例如

You need to use route_url. It's available in the templates in request.route_url.

<a href="${request.route_url('import')}">Import</a>

for example

一紙繁鸢 2024-11-21 16:49:27

Akhet 将 URLGenerator 对象公开为渲染器全局变量,因此您只需使用 url('users', action='list'),假设 config.add_handler( 'users', '/users/{action}', ...) 在您的设置中。

http://docs.pylonsproject.org/projects/akhet /dev/api.html#module-akhet.urlgenerator

Akhet exposes the URLGenerator object as a renderer global, so you can just use url('users', action='list'), assuming config.add_handler('users', '/users/{action}', ...) in your setup.

http://docs.pylonsproject.org/projects/akhet/dev/api.html#module-akhet.urlgenerator

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