我是龙卷风框架的新手。当我打开网址http://www.sample.com/index.html?roomid=1&presenterid=2时,tornado.web.RequestHandler 需要处理 parms 的字典。请看下面的代码,
class MainHandler(tornado.web.RequestHandler):
def get(self, **kwrgs):
self.write('I got the output ya')
application = tornado.web.Application([
(r"/index.html?roomid=([0-9])&presenterid=([0-9])", MainHandler),
])
我的问题是如何编写正则表达式 url ?