Python 路由非参数通配符

发布于 2024-10-27 02:32:53 字数 332 浏览 1 评论 0原文

我正在使用塔,并且在终止“/”字符时遇到麻烦,简单地说,我想忽略它。 我的路由文件如下所示:

    with map.submapper(path_prefix='/app', controller='app') as m:
            m.connect('{_:/?}', action='index')

我很想写 /? 而不是 {_:/?},因为它设置请求 _ 字段到某个东西,如果我重定向,我必须手动取消设置它。我怎样才能实现这个目标?

谢谢

I am using pylons and have a trouble with the terminating '/' character, simply, I want to ignore it.
My route file looks like this:

    with map.submapper(path_prefix='/app', controller='app') as m:
            m.connect('{_:/?}', action='index')

and I would like much to write /? instead of {_:/?}, as it sets the request _ field to something, and I have to unset it manually if I redirect. How can I achieve this?

Thanks

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

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

发布评论

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

评论(1

夜声 2024-11-03 02:32:53

使用“”代替“{_:/?}”或“/?”:

with map.submapper(path_prefix='/app', controller='app') as m:
    m.connect('', action='index')

Instead of "{_:/?}" or "/?", use "":

with map.submapper(path_prefix='/app', controller='app') as m:
    m.connect('', action='index')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文