1

您好,收到了 Tornado 请求。

http://localhost:8000/blah/blah#myparameter=value1

在我的 get 方法中,我试图提取 myparameter 值。get_argument 没有看到它。为什么要呢?标题中没有任何内容

如果可以的话,我愿意将它从字符串中正则表达式。我只需要字符串中的 url

4

1 回答 1

0

这是我的解决方案,提示是使用form带有隐藏的 a 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

网址映射:

(r"/info/*([a-zA-Z0-9]+)*", handlers.Info)
于 2013-05-04T12:12:22.850 回答