如何在 Tornado 路由中实现多个 URL 参数?
我正在尝试弄清楚如何实现最多包含 3 个(可选)url 参数的 URL。
我想出了如何在 ASP.NET MVC 3 中做到这一点,但当前项目的限制消除了它。因此,这就是我要查找的内容:
base/{param1}/{param2}/{param3}
其中 param2 和 param3 是可选的。这只是 handlers
部分中的正则表达式模式吗?
I'm trying to figure out how to implement a URL with up to 3 (optional) url parameters.
I figured out how to do this in ASP.NET MVC 3, but the constraints of the current project eliminated it. So, here's what I'm looking for:
base/{param1}/{param2}/{param3}
where param2 and param3 are optional. Is this simply a regex pattern in the handlers
section?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定是否有好的方法来做到这一点,但这应该可行:
I'm not sure if there is a nice way to do it, but this should work: