0

我尝试了很多次谷歌搜索并在整个互联网上搜索,但没有找到任何相关的东西。我只想获取当前页面的GET参数。就像我们在 PHP 中写入该页面时得到$query = $_GET['q']一样。实际上,在得到这个结果后,我想使用决策声明。

4

2 回答 2

2

网址:example.com?color="green"&flavour="mango"

color_from_url = self.request.get('color')
flavour_from_url = self.request.get('flavour')

你是这个意思吗?如果没有,您能否举例说明源数据(URL)和您想要从中获得的数据。

于 2013-02-04T17:23:19.953 回答
0

我认为这就是您正在寻找的:

https://developers.google.com/appengine/docs/python/tools/webapp/requestclass

于 2013-02-04T17:24:00.307 回答