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.
我的问题很简单...
例如,在 def post(self) 函数中,我可以使用 self.request.get 来提取表单信息。
有什么方法可以在“def get(self)”函数中完成同样的事情吗?
谢谢!!!
编辑:
我想要完成的有点像 facebook。如果你可以想象一个 facebook 墙,每个人都有自己的展示图片,这些图片是动态变化的。我正在尝试完成同样的事情......我认为如果我选择将它们扔到 url 中,太多的变量最终会出现在 url 中。
def get(self): id = self.request.get('id')
您在 URL 中对其进行编码的位置,例如
/play?id=some_id
webapp2处理程序的更多信息