我正在尝试获取URL中的键值(localhost:8080?color = red)并根据url中的值显示不同的页面( red 或蓝色 ...等)。不过,我不知道如何设置它,因为我尝试过的任何东西都没有用。有任何想法吗?这是一个类赋值,所以我不能使用query_string。
if self.request.GET(['color','red']):
view = ContentPage()
fetch_data = Data()
name = fetch_data.red.name
description = fetch_data.red.description
self.response.write(view.print_first() + name + description + view.print_end())
else:
see = Page()
self.response.write(see.output())
答案 0 :(得分:0)
使用self.request.get,如下所示:
color = self.request.get('color')
# do something with color