您好了Tornado请求。
http://localhost:8000/blah/blah#myparameter=value1
在我的get方法中,我试图提取myparameter值。 get_argument看不到它。为什么会这样? 标题中没有任何内容
如果可以的话,我愿意将它从字符串中取出来。我只需要一个字符串中的url答案 0 :(得分:0)
这是我的解决方案,提示是使用隐藏form
的{{1}}:
模板:
id
和龙卷风代码:
<form action="/info">
<input type="hidden" value="your_value" name="id">
<input type="submit" value="Value Result">
</form>
网址映射:
class Info(BaseHandler):
def get(self, id):
id = self.get_argument("id")
# the rest of the code