Pyramid中如何配置多种URL匹配同一个View
2012-07-22 09:26 JustRun 阅读(503) 评论(0) 编辑 收藏 举报在pylons中,通过配置Route可以很容易地配置不同的URL指向同一个controller的Action.
map.connect('/:page/category{categoryid}/pageindex{pageindex}/{id}', controller='front',action='index') map.connect('/:page/category{categoryid}/pageindex{pageindex}/{id}/', controller='front',action='index')
但是在pyramid中,如果我们这样做,
config.add_route('home','/') config.add_route('home','home/')
则会出现如下错误
pyramid.exceptions.ConfigurationConflictError
正确的实现方法是:
你需要为不同的URL配置不同的Route name(在单个application中是不允许有重复的route name):
config.add_route('home','/') config.add_route('home1','home/')
然后为这些route配置相同的view
config.add_view(yourview, route_name='home') config.add_view(yourview, route_name='home1')
如果是用@view_config decorator:
@view_config(route_name='home') @view_config(route_name='home1') def your_method(request): ........
本文基于署名 2.5 中国大陆许可协议发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名justrun(包含链接)。如您有任何疑问或者授权方面的协商,请给我留言。