Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了很多次谷歌搜索并在整个互联网上搜索,但没有找到任何相关的东西。我只想获取当前页面的GET参数。就像我们在 PHP 中写入该页面时得到$query = $_GET['q']一样。实际上,在得到这个结果后,我想使用决策声明。
网址:example.com?color="green"&flavour="mango"
color_from_url = self.request.get('color') flavour_from_url = self.request.get('flavour')
你是这个意思吗?如果没有,您能否举例说明源数据(URL)和您想要从中获得的数据。
我认为这就是您正在寻找的:
https://developers.google.com/appengine/docs/python/tools/webapp/requestclass