如何将所有 .sass 请求匹配到 pylons 中的特定控制器?

发布于 2024-09-15 21:45:56 字数 643 浏览 7 评论 0原文

我正在使用 pylons,并且想使用聪明的 css。

我创建了一个控制器SassController来处理.sass请求,但是在config/routing.py中,我不知道如何编写映射。

我想要的是:

  1. 客户端请求: http://localhost:5000/stylesheets/questions/index.sass sass
  2. 所有此类请求都将由 SassController#index 处理

我尝试过:

map.connect('/{path:.*}.sass', controller='sass', action='index')

但只发现: http://localhost:5000/xxx.sass 将被处理,但是 http://localhost:5000/xxx/yyy.sass 不会。

我现在该怎么办?

I'm using pylons, and want to use clever css.

I created a controller SassController to handle .sass requests, but in the config/routing.py, I don't know how to write the mapping.

What I want is:

  1. client request: http://localhost:5000/stylesheets/questions/index.sass
  2. all such requests will be handled by SassController#index

I tried:

map.connect('/{path:.*}.sass', controller='sass', action='index')

But found only: http://localhost:5000/xxx.sass will be handled, but http://localhost:5000/xxx/yyy.sass won't.

What should I do now?

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

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

发布评论

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

评论(1

々眼睛长脚气 2024-09-22 21:45:56

路由代码使用正则表达式,因此您可以让它吃掉 url 中的所有内容,而不管斜杠如何。

文档位于此处

它看起来像:

map.connect(R'/{path:.*?}.sass', controller='SassController', action='index') 

#in the SassController
def index(self, path):
    return path

http://localhost: 5000/blah/blah/something.sass 将使用 path = blah/blah/something 调用 SassController.index

The routing code using regular expressions so you can make it eat everything in the url regardless of slashes.

The docs are here

It'll look something like:

map.connect(R'/{path:.*?}.sass', controller='SassController', action='index') 

#in the SassController
def index(self, path):
    return path

http://localhost:5000/blah/blah/something.sass will call SassController.index with path = blah/blah/something

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